グループ情報の変更を行います。このコマンドは管理者権限のあるユーザのみ行えます。
groupmod [-g 新グループID [-o]] [-n 新グループ名 ] グループ名
オプション名 | 説明 |
-g 新グループID [-o] | グループのIDを新グループIDに変更します。「-o」オプションを追加した実行した場合、他のグループと重複したIDを指定することが許可されます。 |
-n 新グループ名 | グループの名前を新グループ名に変更します。 |
グループ(「samplegroup03」が存在するものとします。)のグループIDを変更します。
# cat /etc/group|grep samplegroup03 [Enter] samplegroup03:x:519: # groupmod -g 520 samplegroup03 [Enter] # cat /etc/group|grep samplegroup03 [Enter] samplegroup03:x:520: