useradd
প্রোগ্রাম পক্ষে অবচিত হয়েছে adduser
। থেকে man 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
গ্রুপে ব্যবহারকারী যুক্ত করতে হবে ।