wjcui is not in the sudoers file. This incident will be reported.
时间: 2023-12-31 09:23:53 浏览: 68
当出现"wjcui is not in the sudoers file. This incident will be reported."的报错时,可以按照以下方法解决:
1. 使用root用户登录:输入命令"su root",然后输入root用户的密码进行登录。
2. 修改sudoers文件权限:执行以下命令来修改sudoers文件的权限,使得当前用户可以进行修改:
```shell
su
chmod 777 /etc/sudoers
```
3. 编辑sudoers文件:执行以下命令来编辑sudoers文件,将当前用户添加到sudoers文件中:
```shell
vim /etc/sudoers
```
在sudoers文件中,找到类似于下面的行:
```shell
root ALL=(ALL:ALL) ALL
```
在该行下面添加一行,将当前用户添加到sudoers文件中:
```shell
wjcui ALL=(ALL:ALL) ALL
```
保存并退出sudoers文件。
请注意,对sudoers文件的修改需要谨慎操作,以免造成系统安全问题。
相关问题
is not in the sudoers file. This incident will be reported.
"is not in the sudoers file. This incident will be reported." 这是在Linux系统中使用sudo命令时出现的错误提示。这个错误的原因是用户没有被授权执行sudo命令的权限。要解决这个问题,可以按照以下步骤进行操作:
1. 打开终端并以root用户身份登录。
2. 执行visudo命令以编辑sudoers文件:sudo visudo。
3. 在文件中找到以下行:root ALL=(ALL:ALL) ALL。
4. 在该行下方添加一个新行,以允许特定用户执行sudo命令:username ALL=(ALL:ALL) ALL(其中username为要添加的用户名)。
5. 保存并关闭文件。
6. 现在,该用户应该能够正常使用sudo命令了。
is not in the sudoers file. This incident will be reported
这是一个关于 Linux 系统权限的问题,我可以回答。这个错误提示意味着当前用户没有被授权执行 sudo 命令,需要使用 root 用户或者具有 sudo 权限的用户来执行该命令。如果您是系统管理员,可以通过修改 /etc/sudoers 文件来添加用户的 sudo 权限。
阅读全文