Announcement

Collapse
No announcement yet.

How To Create a User in Linux

Collapse
X
Collapse
  •  

  • How To Create a User in Linux



    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 -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




    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




    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:


    Now, search “user” from the search bar:


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


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


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


    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.






    More...
      Posting comments is disabled.

    Categories

    Collapse

    Article Tags

    Collapse

    There are no tags yet.

    Latest Articles

    Collapse

    • 5 Compelling Reasons to Choose Linux Over Windows
      by Kasimba



      by George Whittaker


      Introduction

      In the world of operating systems, Windows has long held the lion’s share of the market. Its user-friendly interface and wide compatibility have made it the default choice for many. However, in recent years, Linux has steadily gained traction, challenging the status quo with its unique offerings. What was once considered the domain of tech enthusiasts and developers is now...
      Yesterday, 06:52 AM
    • NGINX vs Apache; Web Server Comparison
      by Kasimba
      Overview of NGINX and Apache

      NGINX and Apache are leading web server solutions utilized for hosting websites and web applications. Apache, developed by the Apache Software Foundation, offers robust configuration options and extensibility. NGINX, created by Igor Sysoev, is known for its efficiency in handling numerous concurrent connections with low resource utilization. Both servers function not only as HTTP servers but also as reverse proxies, load balancers, and more.

      What is

      ...
      Yesterday, 03:54 AM
    • Monthly News – November 2024
      by Kasimba
      Hi everyone, I hope you are enjoying the BETA so far! This release introduces new features, tools, and artwork, so we anticipate a good number of bug reports. Every single fix helps us refine and improve the final release. Your feedback during the BETA phase is extremely important to us. Linux Mint 22.1 is our […]

      More...
      12-16-2024, 11:50 AM
    • Mastering OpenSSH for Remote Access on Debian Like a Pro
      by Kasimba



      by George Whittaker


      Introduction

      Remote access is a cornerstone of modern IT infrastructure, enabling administrators and users to manage systems, applications, and data from virtually anywhere. However, with great power comes great responsibility—ensuring that remote access remains secure is paramount. This is where OpenSSH steps in, providing robust, encrypted communication for secure remote management....
      12-13-2024, 10:31 PM
    • Unlocking the Full Potential of Linux's Most Versatile Search Tool
      by Kasimba



      by George Whittaker


      Introduction

      The grep command, short for "global regular expression print," is one of the most powerful and frequently used tools in Unix and Linux environments. From sifting through log files to finding patterns in text, grep is a Swiss Army knife for system administrators, developers, and data analysts alike. However, many users limit themselves to its basic functionality, unaware...
      12-13-2024, 09:24 PM
    • Linux Mint 22.1 “Xia” – BETA Release
      by Kasimba
      This is the BETA release for Linux Mint 22.1 “Xia”. Linux Mint 22.1 is a long term support release which will be supported until 2029. It comes with updated software and brings refinements and many new features to make your desktop even more comfortable to use. New features: This new version of Linux Mint contains […]

      More...
      12-12-2024, 09:31 AM
    Working...
    X