一、添加用戶1、登錄root 用戶
2、#useradd xxx(用戶名) 回車
3、#passwd xxx(上面輸入的用戶名) 回車 此項是設置密碼
4、#密碼 回車
5、#確認密碼 回車
二、給該用戶添加root權限1、#chmod -v u+w /etc/sudoers 為sudoers添加可寫權限
2、切換到root(#su),輸入visudo,進入命令模式 注:vi 有兩種模式 :命令模式和編輯模式
3、按Insert,進入編輯模式
4、在 sudoers 文件添加新用戶信息到 ## Allow root to run any commands anywhere 下,修改後的效果為
## Allow root to run any commands anywher root ALL=(ALL) ALL xxx ALL=(ALL) ALL #xxx為新增用戶
5、保存:按Esc 後 輸入 :wq 保存並退出
6、取消 sudoers 文件可寫權限 # chmod -v u-w /etc/sudoers
三、測試1、普通用戶進入
2、#sudo mkdir test(創建的文件夾名)
3、#ls 查看目錄
4、#sudo rm -r test ( 刪除文件夾)