1. 程式人生 > >怎麽查看在centos中創建的用戶組

怎麽查看在centos中創建的用戶組

哪些 text 查看 pre bin group 創建 href tex

用戶列表文件:/etc/passwd
用戶組列表文件:/etc/group
查看系統中有哪些用戶:cut -d : -f 1 /etc/passwd
查看可以登錄系統的用戶:cat /etc/passwd | grep -v /sbin/nologin | cut -d : -f 1
查看用戶操作:w命令(需要root權限)
查看某一用戶:w 用戶名
查看登錄用戶:who
查看用戶登錄歷史記錄:last

怎麽查看在centos中創建的用戶組