ユーザーのプライマリグループとセカンダリグループ

ユーザーのプライマリグループとセカンダリグループ

なぜこのようなことが起こるのでしょうか?グループ1サブグループ内のユーザーのデフォルトグループは何ですか?ユーザーはグループ1/etc/group ファイルから。

# id user
uid=1000(user) gid=1111(group1) groups=1111(group1),1112(group2),1113(group3)

*nixシステムに対する私のかなり新しい理解から、そうではありませんか?gid=1111(グループ 1)、主なグループです。すべてのグループがそうですが、グループ=サブグループですか?では、基本的に基本グループが以下にリストされているのはなぜですか?グループ=

ベストアンサー1

groups他のすべてのグループだけでなく、ユーザーが属するすべてのグループも一覧表示されます。

からman id

By default, it prints the real user ID, real group ID, effective user
ID if different from the real user ID, effective group ID if different
from the real group ID, and supplemental group IDs.  In addition, if
SELinux is enabled and the 'POSIXLY_CORRECT' environment variable is not
set, then print 'context=C', where C is the security context.

おすすめ記事