sudo -i [sudo] password for wmj: wmj is not in the sudoers file. This incident will be reported. [wmj@registry ~]$
时间: 2024-01-04 07:20:10 浏览: 82
根据提供的引用内容,当执行sudo命令时,如果当前用户不在sudoers文件中,则会出现"work is not in the sudoers file. This incident will be reported."的错误提示。这意味着当前用户没有权限执行sudo命令。
为了解决这个问题,需要将当前用户添加到sudoers文件中。可以通过以下步骤来实现:
1. 以root用户身份登录系统。
2. 执行以下命令打开sudoers文件:
```shell
visudo
```
3. 在文件中找到以下行:
```shell
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
```
4. 在该行下面添加以下内容,将"wmj"替换为当前用户的用户名:
```shell
wmj ALL=(ALL) ALL
```
5. 保存并关闭文件。
现在,当前用户应该已经被添加到sudoers文件中,可以尝试再次执行sudo命令。
相关问题
gaoyong is not in the sudoers file. This incident will be reported.
gaoyong is not in the sudoers file. This incident will be reported. 这个错误提示意味着用户gaoyong没有sudo权限,无法执行sudo命令。sudo是一个UNIX和类UNIX操作系统中的命令,允许授权用户以其他用户的身份来执行命令。要解决这个问题,需要具有管理员权限的用户来将gaoyong添加到sudoers文件中。
dong is not in the sudoers file.This incident will be reported .
"dong is not in the sudoers file. This incident will be reported" 是一个系统提示错误信息,表明用户dong没有sudo权限,因此无法执行sudo命令。sudo是用于以超级用户(root)的权限执行命令的工具。只有在sudoers文件中列出的用户才能使用sudo。要解决这个问题,需要将用户dong添加到sudoers文件中。
阅读全文