El useradd
programa ha quedado en desuso a favor de adduser
. De man useradd
:
useradd es una utilidad de bajo nivel para agregar usuarios. En Debian, los
administradores generalmente deberían usar adduser (8) en su lugar .
adduser
es una interfaz más amigable useradd
y hará cosas como crear directorios de usuarios de forma predeterminada. Cuando lo ejecute con solo un nombre de usuario como argumento, se le pedirá que proporcione información adicional como la contraseña:
$ sudo adduser testuser
Adding user `testuser' ...
Adding new group `testuser' (1002) ...
Adding new user `testuser' (1002) with group `testuser' ...
Creating home directory `/home/testuser' ...
Copying files from `/etc/skel' ...
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
Changing the user information for testuser
Enter the new value, or press ENTER for the default
Full Name []:
Room Number []:
Work Phone []:
Home Phone []:
Other []:
Is the information correct? [Y/n]
En general, siempre debe usar en adduser
lugar de, useradd
ya que esto también configurará los grupos necesarios automáticamente. Como se explica en man 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 fea‐
tures.
sudo
grupo.