Ubuntu20.04にidコマンドで所属グループ名とグループIDを表示する方法

2021年3月26日

書式
groupadd [options] GROUP
使用例
1.グループの作成
# groupadd test008

2.作成したグループの確認
# grep test008 /etc/group
test008:x:1007:

3.ユーザをユーザグループに追加
useradd -g グループ名 ユーザー名
-g, –gid GROUP name or ID of the primary group of the new account
使用例
# useradd -g test008 student

4. 所属グループ名とグループIDを表示
# id student
uid=1005(student) gid=1007(test008) groups=1007(test008)

Ubuntu

Posted by arkgame