Get free ebooK with 50 must do coding Question for Product Based Companies solved
Fill the details & get ebook over email
Thank You!
We have sent the Ebook on 50 Must Do Coding Questions for Product Based Companies Solved over your email. All the best!

useradd Command In Linux With Examples

Last Updated on November 21, 2023 by Abhishek Sharma


User management is a fundamental aspect of Linux system administration. The useradd command is a critical tool that allows administrators to create new user accounts on a Linux system. In this article, we will delve into the intricacies of the useradd command, exploring its capabilities, syntax, and providing practical examples to help you understand how to use it effectively.

What is the useradd Command in Linux?

The useradd command is a command-line utility used to create new user accounts on a Linux system. When you create a new user, you are essentially granting them access to the system, complete with their own username, home directory, and other relevant settings. User management is crucial for security, access control, and organizing system resources.

Basic Syntax of useradd Command in Linux

The basic syntax of the useradd command is:
useradd [options] username

  • options: These are optional flags that modify the behavior of the useradd command.
  • username: This is the username for the new user you want to create.

Common Options
The useradd command offers a variety of options to customize the user creation process. Here are some of the most commonly used options:

  • -m (create home directory): This option creates a home directory for the user. By default, it is located in /home/username.
  • -d (specify home directory): You can use this option to specify a custom home directory for the user.
  • -g (initial login group): Set the initial login group for the user.
  • -G (additional groups): Add the user to additional groups.
  • -c (comment): Add a comment or description for the user.
  • -s (login shell): Set the user’s login shell.
  • -e (account expiration date): Specify an account expiration date in the format YYYY-MM-DD.
  • -p (password): You can set an encrypted password for the user using this option.

Examples of useradd Command In Linux

Let’s explore practical examples to illustrate how the useradd command works.

Example 1: Creating a Basic User
To create a new user with the username "johndoe," you can use the following command:

sudo useradd johndoe

This command creates a user without a home directory, login shell, or additional group memberships.

Example 2: Creating a User with a Home Directory
If you want to create a user with a home directory (located in /home/johndoe by default), use the -m option:

sudo useradd -m johndoe

The -m flag ensures that the user’s home directory is created.

Example 3: Specifying a Custom Home Directory
To specify a custom home directory for the user, use the -d option. For instance, to set the home directory to /data/johndoe, you can use:

sudo useradd -m -d /data/johndoe johndoe

Example 4: Adding the User to a Specific Group
You can assign the user to a specific group using the -g option. In this example, we create a user "janedoe" and add her to the "staff" group:

sudo useradd -m -g staff janedoe

Example 5: Setting Additional Group Memberships
To add the user to multiple groups, use the -G option followed by a comma-separated list of group names. In this example, we add "janedoe" to both the "staff" and "users" groups:

sudo useradd -m -G staff,users janedoe

Conclusion
The useradd command is a fundamental tool for creating user accounts in a Linux system. It provides a wide range of options to customize user attributes and settings, making it a versatile tool for system administrators. By mastering useradd, you gain control over user management and can efficiently create and configure user accounts to suit your system’s needs.

FAQs related to useradd Command in Linux

Certainly! Here are some frequently asked questions (FAQs) related to the useradd command in Linux, along with answers and explanations:

1. What is the difference between useradd and adduser?

  • useradd is the low-level command for adding user accounts in Linux. It requires manual specification of user attributes and options.
  • adduser is a higher-level command that interacts with the user via prompts and is more user-friendly. It is a wrapper around useradd and automates many configuration steps.

2. Can I create a user without a home directory using useradd?
Yes, you can create a user without a home directory using the useradd command by omitting the -m option. For example:

sudo useradd username

3. How can I set the default shell for new users created with useradd?
To set the default shell for new users, you can modify the /etc/default/useradd file or use the -s option when running the useradd command. For instance, to set the default shell to /bin/bash:

sudo useradd -s /bin/bash username

4. What is the difference between the user’s primary group (specified with -g) and additional groups (specified with -G)?

  • The primary group is the user’s main group, which is set with the -g option. It’s used as the user’s default group for file ownership.
  • Additional groups are supplementary groups to which the user can belong, specified with the -G option. Users can belong to multiple additional groups for access to shared resources.

Leave a Reply

Your email address will not be published. Required fields are marked *