gruppe

Linux User Management

  • useradd
    • Native binary compiled with the system
    • Creates only a user by default (you have to use switches) to specify home directories and other settings
  • adduser
    • Perl script which uses useradd among others
    • More user friendly and interactive
    • Creates a fully functional user on the system by default

groupadd examplegroup

usermod -a -G examplegroup exampleusername

adduser exampleusername examplegroup

gpasswd -a exampleusername examplegroup

gpasswd -d exampleuser examplegroup

usermod -g groupname username

  • gruppe.txt
  • Last modified: 2020/12/29 02:09
  • by 127.0.0.1