|
||||||||
Добавить пользователя в группу
Время создания: 22.03.2017 09:30
Текстовые метки: linux user group
Раздел: Linux
Запись: Velonski/mytetra-database/master/base/1490157058jbem55ii0d/text.html на raw.githubusercontent.com
|
||||||||
|
||||||||
You can use the useradd or usermod commands to add a user to a group. The useradd command creates a new user or update default new user information. The usermod command modifies a user account and it is useful to add user to existing groups. There are two types of groups under Linux operating systems: All user account related information are stored in the following files:
useradd Example – Add a new user to secondary group You need to the useradd command to add new users to existing group (or create a new group and then add user). If group does not exist, create it. The syntax is as follows: developers:x:1124:
If you do not see any output then you need to add group developers using the groupadd command: uid=1122(vivek) gid=1125(vivek) groups=1125(vivek),1124(developers)
Please note that capital G (-G) option add user to a list of supplementary groups. Each group is separated from the next by a comma, with no intervening whitespace. For example, add user jerry to groups admins, ftp, www, and developers, enter: useradd example – Add a new user to primary group To add a user tony to group developers use the following command: uid=1123(tony) gid=1124(developers) groups=1124(developers)
Please note that small g (-g) option add user to initial login group (primary group). The group name must exist. A group number must refer to an already existing group. usermod example – Add a existing user to existing group Add existing user tony to ftp supplementary/secondary group with the usermod command using the -a option ~ i.e. add the user to the supplemental group(s). Use only with -Goption: usermod command options summary
A note about security If you add or delete user to existing group, you must change the owner of any crontab files or at jobs manually. You must make any changes involving NIS on the NIS server too. |
||||||||
Так же в этом разделе:
|
||||||||
|
||||||||
|