useradd
कार्यक्रम के पक्ष में पदावनत किया गया है adduser
। से man useradd
:
useradd उपयोगकर्ताओं को जोड़ने के लिए एक निम्न स्तर की उपयोगिता है। डेबियन पर,
प्रशासकों को आमतौर पर इसके बजाय एड्यूसर (8) का उपयोग करना चाहिए ।
adduser
के लिए एक फ्रेंडली फ्रंटेंड है useradd
और डिफ़ॉल्ट रूप से उपयोगकर्ता निर्देशिका बनाने जैसी चीजें करेगा। जब आप इसे तर्क के रूप में केवल एक उपयोगकर्ता नाम के साथ चलाते हैं, तो आपको पासवर्ड जैसी अतिरिक्त जानकारी प्रदान करने के लिए प्रेरित किया जाएगा:
$ 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]
सामान्य तौर पर, आपको हमेशा adduser
इसके बजाय उपयोग करना चाहिए useradd
क्योंकि यह आवश्यक समूहों को स्वचालित रूप से सेट करेगा। जैसा कि समझाया गया है 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
समूह में जोड़ना होगा ।