"在Linux下查看用户属于哪个组有很多种方法,下面介绍常用的方法:
1.使用groups命令,后不加用户显示自己属于哪个组,如果后接用户名,则显示这个用户。
[root@localhost 桌面]# groups
root
[root@localhost 桌面]# groups markzhy
markzhy : markzhy
2.使用id命令,用法同groups命令
[root@localhost 桌面]# id markzhy
uid=1000(markzhy) gid=1000(markzhy) 组=1000(markzhy)
3.直接查看/etc/passwd文件
推荐你去看看《Linux就该这么学》这本书,非常适合初学者学习Linux。"
linux查看用户所属组有很多方法:
命令groups 查看当前用户所属组[root@localhost xly]# groups
root
groups 用户(查看用户所属组)[root@localhost xly]# groups xly
xly : xly
id 用户(查看用户所属组)[root@localhost xly]# id xly
uid=500(xly) gid=500(xly) groups=500(xly)
直接查看组文件,cat /etc/group[root@localhost xly]# cat /etc/group 命令的具体介绍可查询”Linux命令大全“。