How to List and Manage Users in Linux

29/12/2020
Chưa phân loại
Linux distributions ship with built-in support for multiple user roles and profiles. By using different user accounts and groups, it is possible to make the same system behave differently for different users or restrict access and privileges to certain users.

This article will explain how to create, delete and manage users and groups in Linux (tested with Ubuntu 19.10)

What is a User?

A “user” is an entity who has rights to access and modify a Linux system in full or limited capacity. There can be many users in a typical Linux system. In fact, during the installation of a Linux based OS like Ubuntu, your default user with login and password as well as many system level users are automatically created.

What is a Group?

A “group” is a broad collection of various users in a Linux system. Groups are usually created to define the same set of rules and security policies for each user that falls under them. These groups allow better user organization by restricting privileges and system access.

Difference Between a System User and a Normal User

Normal users and system users are essentially the same. Some people use them for organizational purposes by classifying them on the basis of assigned user IDs (UIDs), as system users and normal users usually have different ID ranges.

Graphical Application for Managing Users and Groups

A “User and Groups” app comes pre-installed by default on most GNOME based distributions. If not, install it in Ubuntu by running the command below:

$ sudo apt install gnome-system-tools

Just launch it from application launcher and click on visible buttons to manage users and groups.

List Users Using Command Line

To see a detailed list of all users on Ubuntu, run one of the following commands:

$ cat /etc/passwd
$ getent passwd

To see only usernames, run the following command:

$ compgen -u

List All Groups

To list all groups, run the command below:

$ groups

Add a New User

To add a new normal user, run the command below (replace “user_name”):

$ sudo adduser “user_name”

To add a new system user, run the command below (replace “user_name”):

$ sudo adduser –system “user_name”

A new home directory will be created for any new user created using the commands above.

Remove an Existing User

To delete a user, run the command below (replace “user_name”):

$ sudo deluser “user_name”

To delete a user along with its home folder, run the command below (replace “user_name”):

$ sudo deluser –remove-home “user_name”

To delete a user along with all files associated with it, run the command below (replace “user_name”):

$ sudo deluser –remove-all-files “user_name”

Add a New User to an Existing Group

To add a new user to an existing group, run the command below (replace “user_name” and “group_name”):

$ sudo adduser “user_name” “group_name”

Remove a User from an Existing Group

To remove a user from an existing group, run the command below (replace “user_name” and “group_name”):

$ sudo deluser “user_name” “group_name”

Rename Existing User

To rename existing user, run the command below (replace “new_name” and “old_name”):

$ sudo usermod -l “new_name” “old_name”

Change Password of an Existing User

To change the password of an existing user, run the command below (replace “user_name”):

$ sudo passwd “user_name”

Create a New Group

To create a new group, run the command below (replace “group_name”):

$ sudo addgroup “group_name”

To create a new system level group, run the command below (replace “group_name”):

$ sudo addgroup –system “group_name”

Delete an Existing Group

To delete an existing group, run the command below (replace “group_name”):

$ sudo delgroup “group_name”

To delete an existing system level group, run the command below (replace “group_name”):

$ sudo delgroup –system “group_name”

Conclusion

These are few commands that you can use to manage users and groups on your system. Be careful when renaming and removing users, as a wrong command can lead to permanent removal of files of another user or may restrict its login. If you want to preserve files of a user, make sure to take a backup of its home directory before deleting the user.

Sandclock IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, Sandclock IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

Docker Compose Tutorial

Docker’s popularity as a development tool is on the rise. Docker has breathed new life into the container movement. Developers...
28/12/2020

Arch Linux Package System

Arch Linux is a lean and highly customizable distribution of the Linux operating system, and one of its biggest strengths...
28/12/2020

How to Access Google Drive from Ubuntu Desktop

Google drive is a very useful option to keep backups of necessary documents. You can also synchronize your devices with...
28/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

Hướng dẫn chuyển đổi windows server windows evaluation to standard và active windows server 2008 + 2012 + 2016 + 2019
26/10/2021

How to Update Ubuntu Linux
24/10/2021

Squid Proxy Manager cài đặt và quản lý Proxy Squid tự động trên ubuntu
20/10/2021

Hướng dẫn cài đặt Apache CloudStack 4.15.2.0
19/10/2021

Hướng dẫn ký file PDF bằng chữ ký số (chữ ký điện tử) và sửa lỗi mới nhất 2021 foxit reader
19/10/2021