Difference between revisions of "Create a user"

From Linuxintro
imported>ThorstenStaerk
(Created page with "To create an operating system user ''example'' best open a console and enter the following commands: useradd -m ''example'' passwd ''example''")
 
imported>ThorstenStaerk
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
To create an operating system user ''example'' best [[open a console]] and enter the following [[commands]]:
 
To create an operating system user ''example'' best [[open a console]] and enter the following [[commands]]:
 
  useradd -m ''example''
 
  useradd -m ''example''
  passwd ''example''
+
  passwd ''example''  
 +
 
 +
= See also =
 +
* [[system administration]]
 +
* [http://linux.die.net/man/8/useradd useradd's man page]

Latest revision as of 08:45, 11 September 2015

To create an operating system user example best open a console and enter the following commands:

useradd -m example
passwd example 

See also