useradd
Program lehine önerilmemektedir olmuştur adduser
. Gönderen man useradd
:
useradd kullanıcı eklemek için düşük seviyeli bir yardımcı programdır. Debian'da
yöneticiler genellikle bunun yerine adduser (8) kullanmalıdır .
adduser
, useradd
varsayılan olarak kullanıcı dizinleri oluşturmak gibi şeylerin dostça bir ön ucudur . Bağımsız değişken olarak yalnızca bir kullanıcı adıyla çalıştırdığınızda, parola gibi ek bilgiler sağlamanız istenir:
$ 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]
Genel olarak, adduser
bunun yerine her zaman kullanmalısınız useradd
çünkü bu gerekli grupları otomatik olarak kuracaktır. Açıklandığı gibi 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
gruba eklemeniz yeterlidir .