报错如下:
xxx is not in the sudoers file. This incident will be reported.
- 切换到root用户下
$ su
- 赋予 /etc/sudoers 文件读写权限
$ chmod 740 /etc/sudoers
- 编辑sudoers文件
$ vi /etc/sudoers
// 找到这行 root ALL=(ALL) ALL,在他下面添加 xxx ALL=(ALL) ALL (这里的xxx是你的用户名),比如
ROOT ALL=(ALL) ALL
tree ALL=(ALL) ALL
- 撤销sudoers文件写权限
$ chmod 540 /etc/sudoers