要在root使用者下使用
1.新建使用者
adduser testuser //新建testuser 使用者
passwd testuser //給testuser 使用者設定密碼
2.建工作組
groupadd testgroup //新建test工作組
3.新建使用者同時增加工作組
useradd -g testgroup testuser //新建testuser使用者並增加到testgroup工作組
//注::-g 所屬組 -d 家目錄 -s 所用的shell
4.給已有的使用者增加工作組
usermod -g groupname username
5.臨時關閉
在/etc/shadow檔案中屬於該使用者的行的第二個字段(密碼)前面加上就可以了。想恢復該使用者,去掉即可
//或者使用如下命令關閉使用者賬號:
passwd testuser –l
//重新釋放:
passwd testuser –u
6.永久性刪除使用者賬號
userdel testuser
groupdel testgroup
usermod –g testgroup testuser //(強制刪除該使用者的主目錄和主目錄下的所有檔案和子目錄)
7.顯示使用者資訊
id user
cat /etc/passwd
補充:檢視使用者和使用者組的方法
使用者列表檔案:/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
CentOS7新增 刪除使用者和使用者組
adduser testuser 新建testuser 使用者 passwd testuser 給testuser 使用者設定密碼 記得要在root使用者下 groupadd testgroup 新建test工作組useradd g testgroup testuser 新建testuser使用者並...
CentOS7新增刪除使用者和使用者組
要在root使用者下使用 1.新建使用者 adduser testuser 新建testuser 使用者 passwd testuser 給testuser 使用者設定密碼 2.建工作組 groupadd testgroup 新建test工作組 3.新建使用者同時增加工作組 useradd g te...
CentOS 7 新增使用者
首先使用命令 ll usr sbin grep user 找到所有的有關user的命令,adduser guest 建立使用者 passwd guest 修改新增的使用者的密碼 之後系統會提示 更改使用者的密碼。輸入新的密碼之後,確認重新輸入的密碼,之後,系統提示passwd所有的身份驗證令牌已經成...