1.修改 /etc/sudoers
vi /etc/sudoers
在下邊增加一行內容
root ALL=(ALL) ALL
username ALL=(ALL) ALL
2.去掉注釋
%wheel ALL=(ALL) ALL
保存退出
usermod -g root username
3.修改 /etc/passwd 文件
vi /etc/passwd
username:x:500:0:username:/home/username:/bin/bash
改為
username:x:0:0:username:/home/username:/bin/bash
重啟系統
reboot
