Ubuntu – Ubuntu 14.04: New user created from command line has missing features

command lineuseradd

I am trying to create a new user in Ubuntu 14.04 LTS from the bash command line. I use the following commands:

sudo useradd -c "Samwise the Brave" sam    
sudo passwd sam    
Enter new UNIX password: hello-1234    
Retype new UNIX password: hello-1234    
passwd: password updated successfully

After creating this new user, I encountered 3 issues:

  1. I am not able to log into Ubuntu using user sam. Whenever I log in, I am sent back to the login screen.

  2. When I look into the /etc/passwd file, I can see that there are no default shells defined for user sam:

    cat /etc/passwd | grep sam    
    sam:x:1003:1003:Samwise the Brave:/home/sam:
    
  3. Sam's home folder was not created, i.e. /home/sam doesn't exist.

Any clues about what could cause all these issues?

I should note here that when I create a user using the Unity Control Center, these problems do not occur. But I would like to be able to use the command line since I have dozens of users to create.

Best Answer

First notice that it's better to use adduser and not useradd.

Now back to your command:

You should run the command in the following manner:

sudo useradd -m -c "Samwise the Brave" sam  -s /bin/bash 

man useradd

  -s, --shell SHELL
           The name of the user's login shell. The default is to leave this
           field blank, which causes the system to select the default login
           shell specified by the SHELL variable in /etc/default/useradd, or
           an empty string by default.

 -m, --create-home
           Create the user's home directory if it does not exist. The files
           and directories contained in the skeleton directory (which can be
           defined with the -k option) will be copied to the home directory.

           By default, if this option is not specified and CREATE_HOME is not
           enabled, no home directories are created.

So you miss to use -s to add your login shell and the -m to create your home.

If you want to add multiple users in the same time, it's better to use the command newusers. It'll simplify your task.

man newusers

DESCRIPTION

   The newusers command reads a file of user name and clear-text password
   pairs and uses this information to update a group of existing users or
   to create new users. Each line is in the same format as the standard
   password file (see passwd(5)) with the exceptions explained below:

   pw_name:pw_passwd:pw_uid:pw_gid:pw_gecos:pw_dir:pw_shell

Here some tutorial about newusers command:

Related Question