First off, the respective man page snippets highlight the differences between the two commands and give some indication of what is going on. For adduser
:
adduser and addgroup add users and groups to the system according to command line options and configuration information in /etc/adduser.conf. They are friendlier front ends to
the low level tools like useradd, groupadd and usermod programs, by default choosing Debian policy conformant UID and GID values, creating a home directory with skeletal configuration, running a custom script, and other features.
Then for useradd
:
useradd is a low level utility for adding users. On Debian, administrators should usually use adduser(8) instead.
Further investigation of adduser
reveals that it is a perl script providing a high level interface to, and thus offering some of the functionality of, the following commands:
useradd
groupadd
passwd
- used to add/change users passwords.
gpasswd
- used to add/change group passwords.
usermod
- used to change various user associated parameters.
chfn
- used to add/change additional information held on a user.
chage
- used to change password expiry information.
edquota
- used to change disk usage quotas.
A basic run of the adduser
command is as follows:
adduser username
This simple command will do a number of things:
- Create the user named
username
.
- Create the user's home directory (default is
/home/username
and copy the files from /etc/skel
into it.
- Create a group with the same name as the user and place the user in it.
- Prompt for a password for the user.
- Prompt for additional information on the user.
The useradd
program can most of accomplish most of this, however it does not do so by default and needs additional options. Some of the information requires more commands:
useradd -m -U username
passwd username
chfn username
Note that adduser
ensures that created UIDs and GIDs conform with the Debian policy. Creating normal users with useradd
seems to be ok, provided UID_MIN
/UID_MAX
in /etc/login.defs
matches the Debian policy. What is a problem though is that Debian specifies a particular range for system user UIDs which only seems to be supported in /etc/adduser.conf
, so naively adding a system user with useradd
and not specifying a UID/GUID in the correct range leaves the potential for serious problems.
Another common use for adduser
is to simplify the process of adding a user to a group. Here, the following command:
adduser username newgroup
is equivalent to the following usermod
command:
usermod -a -G newgroup username
The main drawback from usermod
in this case is that forgetting to pass the
append option (i.e.: -a
) would end up removing the user from all groups
before adding them to "newgroup" (i.e.: -G
alone means "replace with").
One downside to using adduser
here though is that you can only specify one group at a time.
adduser
according to a system-wide policy, but that's just armchair quarterbacking at best. – mikeserv Mar 23 '14 at 23:51chpasswd
- this can accept hashed passwords onstdin
. I will wait til tomorrow before I update that other answer though I think. – Graeme Mar 24 '14 at 00:09adduser
was originally created for server admin's who frequently needed to create/modify/limit real users like on an email server at university. Withadduser
you can automate the process. This changed a little during the years so nowadaysuseradd
can be to difficult for many admins and for themadduser
has become the tool of choice. – Mar 24 '14 at 00:29-U
/--user-group
seem to the default. – Franklin Yu Aug 03 '16 at 05:49