默认情况下, 普通用户执行sudo <指令> 的时候会出现如下错误:
xxx is not in the sudoers file
解决办法:
$ su -
# chmod u+w /etc/sudoers
# vi /etc/sudoers
找到如下行:
root ALL=(ALL) ALL
在其下面添加:
knityster ALL=(ALL) ALL"
(其中的knityster为你要添加的用户名)
保存
最后:
# chmod 440 /etc/sudoers
即可。
阅读(5832) | 评论(0) | 转发(3) |