格式:groupmod [OPTION]… group
-n NewGroupName OldGroupName: 修改用户组名称
-g NewGID GroupName: 修改用户组GID;不能和现有的GID冲突
-n NewGroupName OldGroupName: 修改用户组名称
-g NewGID GroupName: 修改用户组GID;不能和现有的GID冲突
-n NewGroupName OldGroupName: 修改用户组名称
[root@localhost ~]# tail -2 /etc/group test:x:1001: user2:x:1002: [root@localhost ~]# groupmod -n testgroup user2 [root@localhost ~]# tail -2 /etc/group test:x:1001: testgroup:x:1002:
-g NewGID GroupName: 修改用户组GID;不能和现有的GID冲突
[root@localhost ~]# tail -2 /etc/group test:x:1001: testgroup:x:1002: [root@localhost ~]# groupmod -g 1005 testgroup [root@localhost ~]# tail -2 /etc/group test:x:1001: testgroup:x:1005: [root@localhost ~]# id user3 uid=1001(user3) gid=1005(testgroup) groups=1005(testgroup)
Ubuntu系统请配合sudo使用(sudo groupmod)