用户状态命令 常用的用户状态命令包括:whoami、id、groups、newgrp 等。 ?? whoami:用于显示当前用户的名称 ?? groups:用于显示指定用户所属的组 ?? id:用户显示用户身份 ?? newgrp:用户转换用户的当前组到指定的附加组,用户必须属于该组才可以进行 下面给出这些命令的使用举例: # 创建一个新组staff [[email protected] ~]# groupadd staff # 将用户crq 加入staff 附加组,并为其设置口令 [[email protected] ~]# usermod -G staff crq # 显示当前用户的名称 [[email protected] ~]# whoami root # 显示当前用户所属的组 [[email protected] ~]# groups root bin daemon sys adm disk wheel # 显示指定用户所属的组 [[email protected] ~]# groups crq crq : crq staff # 显示用户当前的uid、gid和用户所属的组列表 [[email protected] ~]# id uid=0(root) gid=0(root) groups=0(root),1(bin), 2(daemon),3(sys),4(adm),6(disk),10(wheel) #切换当前用户到crq(超级用户切换到普通用户无需口令),同时切换用户工作环境 [[email protected] ~]# su - crq [[email protected] ~]$ # 显示用户当前的uid、gid和用户所属的组列表 [[email protected] ~]$ id uid=504(crq) gid=504(crq) groups=504(crq),3001(staff) # 创建一个新文件,并查看其用户和组 [[email protected] ~]$ touch abc [[email protected] ~]$ ll abc -rw-rw-r-- 1 crq crq 0 Dec 19 02:13 abc # 切换用户的当前组到指定的附加组staff [[email protected] ~]$ newgrp staff # 显示用户当前的uid、gid和用户所属的组列表 [[email protected] ~]$ id uid=504(crq) gid=3001(staff) groups=504(crq),3001(staff) # 创建一个新文件,并查看其用户和组(比较abc和xyz的组) [[email protected] ~]$ touch xyz [[email protected] ~]$ ll total 0 -rw-rw-r-- 1 crq crq 0 Dec 19 02:13 abc -rw-r--r-- 1 crq staff 0 Dec 19 02:14 xyz # 返回上一次 crq 的登录 [[email protected] ~]$ exit exit # 返回上一次root的登录 [[email protected] ~]$ exit logout [[email protected] ~]#
时间: 2024-10-25 18:44:58