添加用户and授权root
adduser tom #创建用户
passwd tom #设置密码
chmod u+w /etc/sudoers #加可编辑权限
#授权root
vim /etc/sudoers
添加如下内容‘tom ALL=(ALL) NOPASSWD:ALL’ 在 ‘root ALL=(ALL) ALL’的下一行
Allow root to run any commands anywhere
root ALL=(ALL) ALL
tom ALL=(ALL) NOPASSWD:ALL
chmod u-w /etc/sudoers #去掉可编辑权限
退出重进一下即可