How To Remove Users on Linux

Introduction
Managing user accounts is an essential task for Linux system administrators. Occasionally, you may need to remove users who are no longer active or require access to your system. Removing users involves careful consideration to ensure a smooth transition and maintain system security. In this article, we will provide a step-by-step guide on how to remove users on Linux.
To remove users on Linux, you can follow these step-by-step instructions:
1. Open a terminal
We can open a terminal by pressing Ctrl+Alt+T on most Linux distributions or by searching for “Terminal” in the applications menu.
2. Switch to the root user
To perform administrative tasks like removing users, we need root privileges. We can switch to the root user by running the following command and providing the root password when prompted:
$ sudo su -
3. Check existing users
Before removing a user, it’s a good idea to check the existing users on wer system. We can use the cat command to display the contents of the /etc/passwd file, which contains information about all the users:
$ cat /etc/passwd
4. Remove the user
To remove a user, we can use the userdel command followed by the username. For example, to remove a user named “exampleuser,” run the following command:
$ userdel user01
By default, the userdel command will remove the user’s home directory and mail spool. If we want to keep the user’s home directory or mail spool, we can use the -r option:
$ userdel -r user01
This will remove the user and their home directory/mail spool.
5. Verify user removal
We can verify that the user has been successfully removed by checking the /etc/passwd file again or by using the id command followed by the username. If the user doesn’t exist, we will see an error message indicating that the user doesn’t exist.
6. Exit the root shell
Once we have finished removing the user, we can exit the root shell by running the exit command.
Conlusion
That’s it! We have successfully removed a user on Linux. Remember to exercise caution when removing users, as this action cannot be undone, and the user’s data will be permanently deleted if we choose to remove the home directory.