Linux Creating Group Accounts
In Linux, you can create a new group account using the groupadd
command. Here are the steps to create a new group:
Open a terminal window on your Linux system.
Type the following command to create a new group:
groupadd groupname
Replace groupname
with the name of the new group you want to create.
- By default, the new group is created with the same name as the group ID. You can specify a different group ID by adding the
-g
option followed by the desired ID number. For example, to create a group named "developers" with the ID number 1000, use the following command:
yamlgroupadd -g 1000 developers
- Once the new group is created, you can add users to the group using the
usermod
command. For example, to add the user "jdoe" to the "developers" group, use the following command:
cssusermod -a -G developers jdoe
The -a
option adds the user to the group without removing them from any other groups, and the -G
option specifies the group to add the user to.
Creating group accounts in Linux allows you to manage access to files and directories for multiple users at once. You can create new groups, set group permissions, and add users to groups using the various command-line tools available in Linux.
Comments
Post a Comment