linux用户组管理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux用户组管理相关的知识,希望对你有一定的参考价值。

添加用户组命令groupadd

语法:groupadd [-g gid] [-r]  group_name

-g:指定用户组id

-r:指定用户组为系统用户组

例子:

[[email protected] ~]# groupadd testgrp
[[email protected] ~]# grep testgrp /etc/group/etc/gshadow
/etc/group:testgrp:x:503:
/etc/gshadow:testgrp:!::

 

更改用户组参数命令groupmod

语法:groupmod [-g gid] [-n group_new_name]group_old_name

-g:更改用户组id

-n:更改用户组名称

例子:

[[email protected] ~]# groupmod -g 504 -ngroup1 testgrp
[[email protected] ~]# grep group1 /etc/group/etc/gshadow
/etc/group:group1:x:504:
/etc/gshadow:group1:!::

 

删除用户组命令groupdel

语法:groupdel [group_name]

例子:

[[email protected] ~]# groupdel group1

 

注意:如果这个用户组是某个用户的初始用户组,那么这个用户组是不能被删除的,但是可以通过改变用户的初始用户组id或者删除这个用户来删除用户组。

[[email protected] ~]# groupdel whx
groupdel: cannot remove the primary groupof user ‘whx‘

 

用户组管理员功能gpasswd

对于root用户的操作:

语法:gpasswd group_name

     Gpasswd [-A user_name1,…] [-M user_name2,…] group_name

     Gpasswd [-rR] group_name

不添加参数时表示为用户组设置密码

-A:指定用户组的管理用户

-M:添加用户组成员

-r:删除用户组密码

-R:使用户组密码栏失效

 

对于用户组管理员的操作:

语法:gpasswd [-ad] user_name  group_name

  -a:添加用户组成员

  -d:删除用户组成员

例子:

[[email protected] ~]# groupadd testgrp
[[email protected] ~]# gpasswd testgrp
Changing the password for group testgrp
New Password:
Re-enter new password:
[[email protected] ~]# gpasswd -A xx testgrp
[[email protected] ~]# grep testgrp /etc/group/etc/gshadow
/etc/group:testgrp:x:503:
/etc/gshadow:testgrp:$1$mXATF/sr$NuDqK9ytIDeGNk0qkjybh0:xx:
[[email protected] ~]# su xx
[[email protected] root]$ cd ~
[[email protected] ~]$ id
uid=501(xx) gid=501(xx)groups=501(xx),500(whx)context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
[[email protected] ~]$ gpasswd -a xx testgrp
Adding user xx to group testgrp
[[email protected] ~]$ gpasswd -a whx tesetgrp
gpasswd: group ‘tesetgrp‘ does not exist in/etc/group
[[email protected] ~]$ gpasswd -a whx testgrp
Adding user whx to group testgrp
[[email protected] ~]$ grep testgrp /etc/group
testgrp:x:503:xx,whx


本文出自 “天黑顺路” 博客,请务必保留此出处http://mjal01.blog.51cto.com/12140495/1971080

以上是关于linux用户组管理的主要内容,如果未能解决你的问题,请参考以下文章

在每个用户的Rails中使用片段缓存

SnippetsLab for Mac 1.9 中文共享版 – 强大的代码收藏管理工具

片段 XXX 未与片段管理器关联

使用 Git 来管理 Xcode 中的代码片段

massCode 一款优秀的开源代码片段管理器

如何管理在每个 git 版本中添加私有代码片段?