Adding New Users

adduser (command)

The adduser command is more user friendly than useradd, which is usually reserved for scripting applications

Usage

sudo adduser -u <uid> <username>

Add User to Existing Group

usermod -aG <examplegroup> <exampleusername>

Add User to Sudoers

usermod -aG sudo <username>

Last updated