linux下使用者名稱資訊
建立使用者:
(1)useradd -r -m -s bin/ lin
(2)passwd lin
列出使用者lin的相關資訊:
cat /etc/passwd
想要完全刪除使用者賬號(也就是刪除所有與該使用者相關的檔案),以下這兩種方法個人覺得是最好的:
(1)使用 userdel -r lin命令刪除。
(2)先使用userdel lin 刪除賬戶和組的資訊,在使用find / -name "*lin*"查詢所有與該使用者的相關檔案,在使用rm -rf lin 刪除