Ubuntu 20.04にユーザーの所属グループを表示する方法
1.新規グループを作成
# groupadd school
グループを確認
# cat /etc/group | grep school
school:x:1005:
2.ユーザをグループに追加
書式
usermod -aG グループ名 ユーザ名
# usermod -aG school test01
3.ユーザーがグループに属するを確認方法
方法1
書式 grep グループ名 /etc/group
# grep school /etc/group
school:x:1005:test01
方法2
書式 group ユーザー名
# groups test01
test01 : test01 school
方法3
書式 id ユーザー名
# id test01
uid=1002(test01) gid=1002(test01) groups=1002(test01),1005(school)