is not in the sudoers file. This incident will be reported.
时间: 2023-11-16 14:47:20 浏览: 113
linux系统使用sudo命令报xxx is not in the sudoers file.This incident will be reported.的解决方法.pdf
"is not in the sudoers file. This incident will be reported."表示用户在尝试使用sudo命令时出现了错误,因为该用户不在sudoers文件中。解决该问题的方法有两种:手动修改和命令方式修改。
手动修改的步骤如下:
1. 使用命令"sudo chmod u+w /etc/sudoers"赋予sudoers文件写权限。
2. 使用命令"sudo vi /etc/sudoers"编辑sudoers文件,在对应的位置添加用户的sudo权限。例如,将"user ALL=(ALL:ALL) ALL"添加到文件中。
3. 使用命令"sudo chmod u-w /etc/sudoers"撤销sudoers文件的写权限。
命令方式修改的步骤如下:
1. 使用命令"sudo visudo"以root权限打开sudoers文件。
2. 在文件中找到相应位置,根据需要添加用户的sudo权限。参考手动修改中的步骤3.1。
以上两种方法都是基于现有用户拥有root权限进行操作的。
阅读全文