Create User Without Home Directory in Ubuntu [3 Easy Steps]

In Linux, you have the privilege to manage different users on the same machine. Sometimes you want to give some specified access to some users in Linux. You might want to create a user without a home directory in Ubuntu to restrict the user’s access or limit their privileges. This article will help you to do it very smoothly.

Process flowchart to create a user without a home directory in Ubuntu:

general process to create user without home directory in ubuntu

Distro Used Throughout the Tutorial: Ubuntu 22.04.1 LTS

3 Steps to Create a User without Home Directory in Ubuntu

In Ubuntu, you can easily create new users from both the CLI(Command Line Interface) and GUI(Graphical User Interface). The distribution provides two different commands to create a new user. Here, I will use the useradd command only as the adduser command creates a home directory by default with the new user.

Read More: How to Create a New SFTP User in Ubuntu with a New SSH Key

Step 1: Create a New User in Ubuntu

You can create a new user from the terminal using the useradd command. Here, I have used the first command. Go through the below steps to see how it works:

  1. Open the Ubuntu Terminal by pressing CTRL+ALT+T.
  2. Insert the following command to create a user:
    sudo useradd -M abir

    OR,

    sudo useradd --no-create-home abir
    EXPLANATION
    • sudo: Grants administrative privileges.
    • useradd: Adds a new user
    • -M / –no-create-home: Skips creating a home directory for the new user.
    • abir: Creates a new user named abir.
    It will ask for the current user’s password.
  3. Press the ENTER key after providing the password.Create a user in Ubuntu

In the above image, you can see that nothing happens after giving the password. You need to set the password of the new user to create it successfully.

Step 2: Set the Password for the New User in Ubuntu

Follow the steps given below to set the password for the new user ID:

  1. First, open your terminal.
  2. Then type the following command in your command prompt:
    sudo passwd abir

    Here, the passwd command sets/changes the password.

  3. Finally, press the ENTER button. Now, give your current user password. Then, type the password for the new user ID and retype the password again.set password for newly created user in Ubuntu As you can see in the above image, my password is updated successfully.
Warning: Try to set a unique and strong password. Otherwise, you will get a warning message such as “BAD PASSWORD” as in the above image.

Step 3: Check for New User’s Home Directory in Ubuntu

To check whether the new user account has a home directory or not you need to switch to the new user. Here’s how:

  1. First, launch your terminal.
  2. Then type the following command in your command prompt:
    su - abir
    EXPLANATION
    • su: Substitutes User ID.
    • abir: Newly created user name to switch to.
  3. After pressing the ENTER button, you will see that your command prompt and terminal will change as shown in the below picture.switch user to check whether the user has home directory or not You can see that a warning message is displayed on the screen. It says no home directory is created for the new account.


Check If the Newly Created User Exists in Ubuntu

To check whether a new user account is created, you can apply the given approach:

  1. Open the Ubuntu terminal.
  2. Then, type the following command:
    getent passwd | grep abir
    EXPLANATION
    • getent: Looks into the administrative database that is given as its argument.
    • Pipe (|): Redirects the standard output.
    • grep: Looks for a specific pattern given to it as an argument.
  3. Press ENTER.Check if the user is created without home directory in Ubuntu You can see in the above picture that a new user named abir has been created.
OUTPUT ANALYSIS

The output of the above image represents the following:

  • abir: Name of the user account.
  • x: Password field in a non-readable format ‘x’. which means that the password is stored in the /etc/shadow file.
  • 1001: The user ID (UID) for this user.
  • 1001: The group ID (GID) for this user.
  • ,,,: Comment field. These three consecutive commas mean that for this user it is empty.
  • /home/tom: Home directory of this user.
  • /bin/sh: Default log-in shell of this user.

Give Root Privileges to an Existing User in Ubuntu

Root privileges refer to the administrative rights granted to the superuser, often referred to as “root.” Root is the highest level of access and has unrestricted control over the system. With root privileges, a user can perform tasks that are critical to system operation, such as installing and removing software, modifying system configurations, and accessing sensitive files.

If you’re a root user or you’ve root privileges in Ubuntu, you can give root privileges to another existing user by adding it to the sudo group. For this, you have to use the usermod command in Linux. To do this:

  1. Open the terminal.
  2. Then, type the following command:
    sudo usermod -aG sudo abir
    EXPLANATION
    • usermod: Modifies an existing user account.
    • -aG: Adds a user to the specific group.
  3. After that, provide the password of the currently logged-in user.
  4. To check whether the user is added to the sudo group run the groups abir command.
    giving root privileges to user in Ubuntu In the above image, you can see that I have given the user “abir” root privileges by adding it to the sudo group. Furthermore, I checked its group by using the groups command and tested its elevated powers by using the ls command.


Delete User in Linux

You can easily remove any user from the system using the terminal with the userdel command in Ubuntu. Here, I will delete the user account named “abir”. To do the same follow the below procedures:

  1. Open the terminal.
  2. Then, type the following command into the command prompt.
    sudo userdel abir
  3. Press ENTER.
  4. Finally, provide the password of the currently logged-in user.delete user in Ubuntu In the above image, you can see that I removed the user “abir” using the Ubuntu terminal.

Conclusion

After completing this article, you will be able to create a user without a home directory very easily in Ubuntu. This will help you to organize your work making you a power user of Linux.

People Also Ask

What is the home directory of a user in Linux?

The home directory in Linux is the designated space where a user’s files, settings, and personal data are stored. It acts as the base directory for the user when they login to the system. The home directory acts as a one-of-a-kind workspace for the user.

How does the home directory work?

The home directory in a Unix-based system, like Linux, acts as a personal desktop for each user. The home directory contains the user’s files, configurations and settings, providing a secure and customized environment. When you log in, you’ll be directed to your home directory, which acts as a central hub for your computing experience.

Why home directory is used in Linux?

The home directory is used to create a unique environment for each user in Linux. The home directory contains the files, configuration, and settings of the user. The home directory provides the user with a secure and customized environment. The home directory is used as the user’s workspace when the user logs in.

What is the purpose of a home directory in Linux?

The home directory of Linux acts as the personal workspace of each user, containing files, settings, and configurations. This directory is the user’s initial point of entry upon logging in, allowing for personalization and security for each user’s computing experience.

Which character represents the user’s home directory?

The tilde (~) character represents the user’s home directory in Linux.

What permission should the home directory have?

The home directory should typically have 700 (dwrxr-xr-x.) permissions, ensuring maximum security by granting read, write, and execute permissions exclusively to the owner, while restricting access for others.

Where are user home directories stored in Linux?

The user home directories are stored in /home/username/os location in Linux. Here, os means the operating system the user is working with.

What is the difference between the home directory and the root directory?

The primary difference between the home and root directories is that the home directory contains user-specific files and configurations; the root directory, on the other hand, is the system’s primary directory, containing necessary system files and configurations. In other words, the home directory is user-centered, while the root directory is system-centered.

Related Articles

5/5 - (13 votes)
LINUX
FUNDAMENTALS
A Complete Guide for Beginners Enroll Course Now
icon linux
Borhan Uddin

Hello, I am Borhan Uddin, a resident of Dhaka, Bangladesh. I have completed my undergraduate degree in Electrical and Electronic Engineering (EEE) from Chittagong University of Engineering and Technology (CUET). I love to spend my leisure by playing and watching various movies & dramas. Currently, I am working as a Linux Content Developer Executive here. I would like to learn more about Linux every day of the week and would be keen to share it with you rapidly. Read Full Bio

Leave a Comment