Linux gpasswd 是 Linux 下工作组文件 /etc/group 和 /etc/gshadow 管理工具,用于将一个用户添加到组或者从组中删除。
语法格式:gpasswd [参数]
常用参数:
-a | 添加用户到组 |
-d | 从组删除用户 |
-A | 指定管理员 |
-M | 指定组成员和-A的用途差不多 |
-r | 删除密码 |
-R | 限制用户登入组,只有组中的成员才可以用newgrp加入该组 |
参考实例
使用-a参数把bianchengshe用户添加到it用户组:
[root@bianchengshe ~]# gpasswd -a bianchengshe it
Adding user bianchengshe to group it
显示上面使用-a参数添加用户到组用信息:
[root@bianchengshe ~]# more /etc/group|grep it
bianchengshe:x:1005:bianchengshe
使用-d参数从it组中删除bianchengshe用户:
[root@bianchengshe ~]# gpasswd -d bianchengshe it
Removing user bianchengshe from group it
显示it组用的bianchengshe用户是否删除成功:
[root@bianchengshe ~]# more /etc/group|grep it
it:x:1005:
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容