命令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
root:x:0:
bin:x:1:bin,daemon
daemon:x:2:bin,daemon
sys:x:3:bin,adm
adm:x:4:adm,daemon
tty:x:5:
disk:x:6:
lp:x:7:daemon
mem:x:8:
kmem:x:9:
xly:x:500:
命令:cat /etc/group|grep 组名,用于查找某个用户组
"在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。"
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)