xxx is not in the sudoers file. This incident will be reported.

普通用户如何使用 sudo 命令

xxx is not in the sudoers file. This incident will be reported.

1.切换到 root 用户下# su root

2.添加 sudo 文件的写权限,命令是:# chmod u+w /etc/sudoers

3.编辑 sudoers 文件 # vim /etc/sudoers

找到这行 root ALL=(ALL) ALL,在他下面添加xxx ALL=(ALL) ALL (这里的xxx是你的用户名)

ps:这里说下你可以sudoers添加下面四行中任意一条
youuser ALL=(ALL) ALL
%youuser ALL=(ALL) ALL
youuser ALL=(ALL) NOPASSWD: ALL
%youuser ALL=(ALL) NOPASSWD: ALL

第一行:允许用户youuser执行sudo命令(需要输入密码).
第二行:允许用户组youuser里面的用户执行sudo命令(需要输入密码).
第三行:允许用户youuser执行sudo命令,并且在执行的时候不输入密码.
第四行:允许用户组youuser里面的用户执行sudo命令,并且在执行的时候不输入密码.

4.撤销 sudoers 文件写权限,命令:# chmod u-w /etc/sudoers

参考资料: