hejinchun is not in the sudoers file. This incident will be reported.
时间: 2023-11-17 19:00:42 浏览: 50
在执行sudo命令时,出现了“hejinchun is not in the sudoers file. This incident will be reported.”的报错。这是因为你的用户没有被授权执行sudo命令。解决方法如下:
1. 以root用户身份登录系统。
2. 执行以下命令:`visudo`。
3. 在打开的文件中找到“root ALL=(ALL:ALL) ALL”这一行,在其下面添加一行:`hejinchun ALL=(ALL:ALL) ALL`。
4. 保存并退出文件。
5. 退出root用户,重新以你的用户身份登录系统,即可执行sudo命令。
相关问题
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 权限。
阅读全文