Add a new user
By Kamil Rytarowski
useradd -m joe
passwd joe
Explanation
useradd -m joe
Adds a new user with the login name “joe”.
The -m
switch to useradd
automates the creation of the home directory.
passwd joe
Sets the password.
By Kamil Rytarowski
useradd -m joe
passwd joe
useradd -m joe
Adds a new user with the login name “joe”.
The -m
switch to useradd
automates the creation of the home directory.
passwd joe
Sets the password.