Groups
Groups are collections of users. They are used to simplify access control and permissions management.
Users within the same group share common permissions to files and directories. A group also has a unique group ID (GID).
When a user creates a file, the file’s group ownership is set to the user’s primary group by default.
There are 2 categories of groups in the Linux operating system i.e. Primary and Secondary groups.
Primary Group
The Primary Group is a group that is automatically generated while creating a user with a unique user ID simultaneously a group with an ID the same as the user ID is created and the user gets added to the group and becomes the first and only member of the group. This group is called the primary group.
Secondary Group
A secondary group is a group that can be created separately with the help of commands and we can then add users to it by changing the group ID of users.
Now we will discuss the important commands to manage users in Linux.
Group Creation
The below command created a group with the name provided. The group while creating gets a group ID and we can get to know everything about the group as its name, ID, and the users present in it in the file “/etc/group”.
Group Password Setup
Above command is used to set the password of the group. After executing the command, we have to enter the new password which we want to assign to the group. The password has to be given twice for confirmation purposes.
Group Password file
To access information about groups and their passwords, you can view the password file, /etc/gshadow. However, keep in mind that this file is not intended for regular viewing.
Adding User to Old group
To add a user to an existing group, you can utilize the usermod command. By specifying the group name, you can add a user to the desired group. However, note that when a user is added to a new group, they are automatically removed from their previous groups.
This command is used to add a user to a new group while preventing him from getting removed from his existing groups.
To add multiple users to a group simultaneously, you can utilize the gpasswd command with the -M option. This command allows you to specify a list of usernames separated by commas.
The user is then removed from the group though it is still a valid user in the system but it is no longer a part of the group.
To delete a group from the system, use the groupdel command. This action removes the group while retaining the users who were members of the group.
Last updated