xxx is not in the sudoers file. This incident will be reported的错误解决方案

来源:互联网 发布:那个是淘宝限制发布的 编辑:程序博客网 时间:2024/05/13 13:16
原因:linux默认没有开启sudo权限

解决方法:
#su -
#chmod u+w /etc/sudoers
#visudo
在root ALL=(ALL) ALLZ下 添加xxx ALL=(ALL) ALL
#chmod u-w /etc/sudoers