uidgid 文件 - 括号中的 UID

uidgid 文件 - 括号中的 UID

正在查看文件/usr/share/doc/setup-*/uidgid在 RHEL7 上,我可以看到一些行包含-,?或括号中的数字:

...
nslcd   65  (55)    /       /sbin/nologin   nslcd
wine    -   66  -       -   wine
...
listar  ?   ?   ?       ?   listar
...

?和的含义-可以通过某种方式隐含,但是括号中的数字呢?

例如,给定组的 UID 为 100,(100)对于games用户意味着什么?users

games   12  (100)   /usr/games      /sbin/nologin   setup
users   -   100 -       -   setup

或者更好——有语法的官方解释吗?

答案1

(100) 似乎是在 /etc/passwd 中分配用户的默认组:

$ grep games /etc/passwd /etc/group
/etc/passwd:games:x:12:100:games:/usr/games:/sbin/nologin
/etc/group:games:x:20:
$ id games
uid=12(games) gid=100(users) groups=100(users)

相关内容