标签:
NAME
groupmod - modify a group definition on the system
SYNOPSIS
groupmod [options] GROUP
Options:
-g, --gid GID change the group ID to GID
-h, --help display this help message and exit
-n, --new-name NEW_GROUP change the name to NEW_GROUP
-o, --non-unique allow to use a duplicate (non-unique) GID
-p, --password PASSWORD change the password to this (encrypted)
PASSWORD
groupmod命令用于更改一个组在系统上的定义
语法:groupmod [选项] 组名
选项
-g,--gid GID 修改组的GID号
-h,--help 获得groupmod命令的使用帮助信息
-n, --new-name NEW_GROUP 更改组的组名
-o 与-g配置使用,可以设定不唯一的组ID值
-p 修改组的密码
例子:
假设已存在组testbed,gid为4000
#groupmod -n testbed-new testbed 将testbed组名更改为testnbed-new
#groupmod -g 5000 testbed-new 将testbed-new组的组ID更改为5000
标签:
原文地址:http://www.cnblogs.com/xwhoami/p/5259534.html