Các useradd
chương trình đã được phản đối ủng hộ adduser
. Từ man useradd
:
useradd là một tiện ích cấp thấp để thêm người dùng. Trên Debian,
quản trị viên thường nên sử dụng adduser (8) thay thế .
adduser
là một giao diện thân thiện hơn useradd
và sẽ làm những việc như tạo thư mục người dùng theo mặc định. Khi bạn chạy nó chỉ với một tên người dùng làm đối số, bạn sẽ được nhắc cung cấp thêm thông tin như mật khẩu:
$ 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]
Nói chung, bạn nên luôn luôn sử dụng adduser
thay useradd
vì điều này cũng sẽ tự động thiết lập các nhóm cần thiết. Như đã giải thích trong 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
nhóm.