zhouyuanguo is not in the sudoers file. This incident will be reported.
时间: 2024-02-06 07:07:55 浏览: 76
xxx is not in the sudoers file解决方法
当出现"zhouyuanguo is not in the sudoers file. This incident will be reported."的报错时,可以按照以下方法解决:
1. 使用root用户登录:输入命令`su root`,然后输入root用户的密码进行登录。
2. 修改sudoers文件权限:执行以下命令`chmod 777 /etc/sudoers`,将sudoers文件的权限设置为可读可写可执行。
3. 编辑sudoers文件:执行以下命令`vim /etc/sudoers`,使用vim编辑器打开sudoers文件。
在sudoers文件中,找到以下行:
```
root ALL=(ALL:ALL) ALL
```
在该行下方添加一行:
```
zhouyuanguo ALL=(ALL:ALL) ALL
```
保存并退出sudoers文件。
这样,用户"zhouyuanguo"就被添加到sudoers文件中,可以使用sudo命令了。
阅读全文