ubuntu下普通用户没有sudo权限的解决办法

ubuntu下普通用户没有sudo权限


出现XXX is not in the sudoers file. This incident will be reported.提示,说明该XXX用户没有sudo权限
原因是用户没有加入到sudo的配置文件(/etc/sudoers)里
解决办法:
1、su - root
2、chmod u+w /etc/sudoers
3、vim /etc/sudoers
4、按键a/i/o任一字母进入编辑模式,在root ALL=(ALL:ALL) ALL下面添加XXX ALL=(ALL) ALL语句,按键esc回到命令模式,在输入:进入命令行模式,输入wq退出vim
5、chmod u-w /etc/sudoers
ok,可以用回XXX普通用户的身份去验证了

你可能感兴趣的:(普通用户没有sudo权限,Linux)