useradd
The useradd command will let you add a new user easily from the command line:$useradd <username>This command adds the user, but without any extra options your user won’t have a password or a home directory.
You can use the -d option to set the home directory for the user. The -m option will force useradd to create the home directory. We’ll try creating a user account with those options, and then use the passwd command to set the password for the account. You can alternatively set a password using -p on the useradd command, but I prefer to set the password using passwd.
This will create the user named testuser and give them their own home directory in /home/testuser. The files in the new home directory are copied from the /etc/skel folder, which contains default home directory files. If you wanted to set default values for your users, you would do so by modifying or adding files in that directory. If we take a look at the new home directory for the user:
ict@ubuntuServ:/etc/skel$ ls -la /home/testusertotal 20drwxr-xr-x 2 testuser testuser 4096 2006-12-15 11:34 .drwxr-xr-x 5 root root 4096 2006-12-15 11:37 ..-rw-r–r– 1 testuser testuser 220 2006-12-15 11:34 .bash_logout-rw-r–r– 1 testuser testuser 414 2006-12-15 11:34 .bash_profile-rw-r–r– 1 testuser testuser 2227 2006-12-15 11:34 .bashrcYou’ll notice that there are bash scripts in this directory. If you wanted to set default path options for all new users, you would do so by modifying the files in /etc/skel, which would then be used to create these files by the useradd command.
adduser
The adduser command is even easier than the useradd command, because it prompts you for each piece of information. I find it slightly funny that there are two virtually identically named commands that do the same thing, but that’s linux for you. Here’s the syntax:$adduser <username>Example:
ict@ubuntuServ:/etc/skel$ sudo adduser thegeekPassword:Adding user `thegeek’…Adding new group `thegeek’ (1004).Adding new user `thegeek’ (1004) with group `thegeek’.Creating home directory `/home/thegeek’.Copying files from `/etc/skel’Enter new UNIX password: Retype new UNIX password: No password suppliedEnter new UNIX password: Retype new UNIX password: passwd: password updated successfullyChanging the user information for thegeekEnter the new value, or press ENTER for the defaultFull Name []: The GeekRoom Number []: 0Work Phone []: 555-1212Home Phone []: 555-1212Other []: Is the information correct? [y/N] y
No comments:
Post a Comment