Debian and its offspring, such as Ubuntu, have two user creation utilities:
- useradd on Debian/Ubuntu
-
adduser on Debian/Ubuntu
Debian and its offspring, such as Ubuntu, have two user creation utilities:
adduser on Debian/Ubuntu
The useradd utility is there, but Debian and Ubuntu don't come with the handy preconfigured defaults as Red Hat and CentOS do. If you were to just do sudo useradd frank on a default Debian/Ubuntu machine, Frank would have no home directory and would be assigned the wrong default shell. So, to create a user account with useradd on a Debian or Ubuntu system, the command would look something like:
sudo useradd -m -d /home/frank -s /bin/bash frank
In this command: