[sudo] password for tom1: tom1 is not in the sudoers file. This incident will be reported.
时间: 2023-12-06 19:38:09 浏览: 73
linux系统使用sudo命令报xxx is not in the sudoers file.This incident will be reported.的解决方法.pdf
根据提供的引用内容,出现"[sudo] password for user:"的提示是因为需要输入用户的密码才能使用sudo命令。而"work is not in the sudoers file"和"tom1 is not in the sudoers file"的提示则是因为这两个用户没有sudo权限,无法使用sudo命令。
如果您想让用户tom1拥有sudo权限,可以通过以下步骤进行设置:
1. 以root用户身份登录系统。
2. 执行以下命令打开sudoers文件:
```shell
visudo
```
3. 在文件中找到以下行:
```shell
root ALL=(ALL:ALL) ALL
```
4. 在该行下面添加以下内容:
```shell
tom1 ALL=(ALL:ALL) ALL
```
其中,tom1是您想要授权sudo权限的用户名。
5. 保存并退出文件。
现在,用户tom1就可以使用sudo命令了。
阅读全文