添加用戶shell
adduser test
//添加一個test用戶刪除用戶spa
userdel -r test
//刪除test用戶修改用戶密碼或者添加用戶密碼code
passwd test
// 爲test用戶設置密碼管理用戶組文檔
usermod -G root
//將用戶test分配到root組中。添加組it
groupadd test
// 添加test組修改組ast
groupmod -n test2 test
// 將組test改名爲test2刪除組class
groupdel test2
//刪除test2組查看組test
groups test
//查詢用戶所在的組查看當前登陸用戶awk
who
查看單個用戶信息登錄
id test
// 查test用戶信息查看用戶登陸信息
last
// 查看用戶登陸信息lastb
// 查看用戶失敗登陸信息查看全部用戶
cat /etc/passwd|grep -v nologin|grep -v halt|grep -v shutdown|awk -F":" '{ print $1"|"$3"|"$4 }'|more
cat /etc/passwd |awk -F \: '{print $1}'
sudo: 以另外一個用戶的身份來執行命令