<img alt="" data-ezsrc="https://kirelos.com/wp-content/uploads/2020/08/echo/featured.jpg5f41857cb1667.jpg" data-ez ezimgfmt="rs rscb27 src ng ngcb27 srcset" loading="lazy" src="data:image/svg xml,”>

One of the first tasks when provisioning a new Ubuntu system is adding and removing users. Each user can have different permission levels and specific settings for various command-line and GUI applications.

This article explains how to add and remove user accounts on Ubuntu 18.04.

Before You Begin

Only root or users with sudo privileges can create and remove users.

New users can be created in two ways:

  1. From the command line.
  2. Through the GUI.

Adding a User from the Command Line

In Ubuntu, there are two command-line tools that you can use to create a new user account: useradd and adduser.

useradd is a low-level utility. adduser is a script written in Perl that acts as a friendly interactive frontend for useradd.

Adding a new user is quick and easy, simply invoke the adduser command followed by the username. For example, to create a new user account named username you would run:

sudo adduser username
Adding user `username' ...
Adding new group `username' (1001) ...
Adding new user `username' (1001) with group `username' ...
Creating home directory `/home/username' ...
Copying files from `/etc/skel' ...

You will be asked a series of questions. Enter and confirm the new user password. Providing an answer to all other questions is optional.

Enter new UNIX password: 
Retype new UNIX password: 
passwd: password updated successfully
Changing the user information for username
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] 

At the end, you’ll be prompted to confirm that the information you entered is correct.

The command will create the new user’s home directory, and copy files from /etc/skel to it. Within the home directory, the user can write, edit, and delete files and directories.

If you want the new user to be able to perform administrative tasks, you need to add the user to the sudo group :

sudo usermod -aG sudo username

Adding a User through the GUI

If you are not comfortable with the command line, you can add a new user account through the GUI. To do so, follow the steps below:

  1. Open the settings window and click on the “Users” tab.

  2. Click on the “Unlock” button, and enter your user password when prompted.

    <img alt="" data-action="zoom" data-ezsrc="https://kirelos.com/wp-content/uploads/2020/08/echo/ubuntu-users-window.jpg" data-ez ezimgfmt="rs rscb27 src ng ngcb27 srcset" loading="lazy" src="data:image/svg xml,”>

    Once you enter the password, the “Unlock” button will change to a green “Add User” button.

  3. Click on the “Add User” button, and the Add user dialog will appear:

    <img alt="" data-action="zoom" data-ezsrc="https://kirelos.com/wp-content/uploads/2020/08/echo/ubuntu-add-user.jpg" data-ez ezimgfmt="rs rscb27 src ng ngcb27 srcset" loading="lazy" src="data:image/svg xml,”>

  4. Select whether the new user should be a standard or administrator user and enter information. Once done, click on the “Add” button.

Removing a User from the Command Line

In Ubuntu, you can use two commands to delete a user account: userdel and its interactive frontend deluser.

To delete the user, invoke the deluser command and pass the username as the argument:

sudo deluser username

The command above will not remove the user files.

If you want to delete the user and its home directory and mail spool, use the --remove-home flag:

sudo deluser --remove-home username

Removing a User through the GUI

  1. Open the settings window and click on the “Users” tab.

  2. Click on the “Unlock” button, and enter your user password when prompted.

  3. Click on the username you want to delete, and you will see a red “Remove User..” button on the bottom right corner.

    <img alt="" data-action="zoom" data-ezsrc="https://kirelos.com/wp-content/uploads/2020/08/echo/ubuntu-remove-user.jpg" data-ez ezimgfmt="rs rscb27 src ng ngcb27 srcset" loading="lazy" src="data:image/svg xml,”>

  4. Click the “Remove User..” button, and you will be prompted whether to keep or delete the user home directory. Clicking on one of those buttons removes the user.

Conclusion

We’ve shown you how to add and remove users in Ubuntu 20.04. Knowing how to add and remove users is one of the basic skills a Linux user should know.

Feel free to leave a comment if you have any questions.