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