Difference between revisions of "Create user"

(Created page with "To create a new user: <syntaxhighlight lang="bash"> adduser <username> </syntaxhighlight> Grant this user the administration right by adding it to the "sudoers" group: <sy...")
 
 
Line 1: Line 1:
 +
[[Category:Linux]]
 
To create a new user:
 
To create a new user:
  

Latest revision as of 17:59, 10 June 2014

To create a new user:

adduser <username>


Grant this user the administration right by adding it to the "sudoers" group:

usermod -a -G sudo <username>