-
博文分类专栏
- Jquery基础教程
-
- 文章:(15)篇
- 阅读:46583
- shell命令
-
- 文章:(42)篇
- 阅读:154304
- Git教程
-
- 文章:(36)篇
- 阅读:234924
- leetCode刷题
-
- 文章:(76)篇
- 阅读:131950
-
执行sudo命令报错is not in the sudoers file解决方案2018-03-24 16:54 阅读(5422) 评论(0)
最近在使用sudo命令,以root用户来执行某些操作的时候,报错 is not in the sudoers file. This incident will be reported,如下:
在linux中,root用户除外,只有在sudoers里面的用户,才有权限执行 sudo命令。
如何将用户加到sudoers里面呢?
1、以root用户打开/etc/sudoers文件
vim /etc/sudoers
2、修改文件内容
找到“root ALL=(ALL) ALL”一行,在下面插入一行“cuser ALL=(ALL) ALL”,如下:
此时,“dequan”用户,就可以使用sudo命令了,如下: