Jump to content

How To Create a User in Linux


Linux Hint

Recommended Posts

Linux is a multi-user system, meaning multiple users can work collaboratively on a single system. It helps organizations streamline their workflow and divide the workload. Every employee or member who joins the team gets separate user IDs to access the system, and every ID is associated with different permissions(read, write, or execute). 

That’s why you must know all the aspects of user management to ensure data privacy and system security. However, a Linux administrator needs to know the correct way of creating a user in the system. So, this short guide is about simple methods to create a user in Linux.

Although, adduser and useradd commands look similar, they differ in functionality. Hence, let’s look at the best suitable examples of these commands to create hassle-free users. 

The useradd Command

The useradd is a simple command by which you can add any user in the system: 

sudo useradd -m username

the-useradd-command

The -m option provides the new user with their home directory. The only drawback of the useradd command is that it generates new users without a password. So, to create a password for them, enter the passwd command:

sudo passwd username

passwd-command-to-setup-password

Here, you can add the password for the user. 

The adduser Command

The adduser command is a simpler alternative to useradd. It creates interactive prompts for users to set passwords and other vital details. 

sudo adduser username

adduser-command-in-linux

After running the command, follow the on-screen prompts to provide the information about the new user. For example, it asks you to provide a password, full name, and other important details for the user. 

The System Settings 

Instead of using the terminal, you can create a user from the Settings. First, go to the system settings:

searching-for-settings-in-search-menu.jp

Now, search “user” from the search bar:

user-settings-in-linux.jpg

Here, you need to click on the unlock and then provide the password to access the Settings as administrator:

admin-settings-in-linux

Click on the “Add User” and add the required details, including the full name, password, and access privileges: 

adding-users-from-settings

Finally, click on the add button to make changes successful: 

saving-a-user-details-in-linux

A Quick Wrap-up

User management in Linux is fundamental, and many users still need to learn how to create a user. Hence, in this guide, we have explained the same using three simple methods. The useradd and adduser are two commands that’ll help you accomplish this task using the command line. Alternatively, you can access the System Settings and add the users manually.

View the full article

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...