要在Ubuntu系統中添加用戶,可以使用以下命令:
sudo adduser username
其中username
是要添加的新用戶的用戶名。系統會提示您設置密碼和其他用戶信息。
sudo
組以賦予管理員權限,可以使用以下命令:sudo usermod -aG sudo username
其中username
是要添加到sudo
組的用戶的用戶名。
要在Ubuntu系統中刪除用戶,可以使用以下命令:
sudo deluser username
其中username
是要刪除的用戶的用戶名。系統會提示您確認是否要刪除該用戶及其文件。
sudo deluser --remove-home --remove-all-files username
其中username
是要刪除的用戶的用戶名。系統會刪除用戶的主目錄和郵箱。