[转]Linux下is not in the sudoers file解决方法

Posted 胜强

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[转]Linux下is not in the sudoers file解决方法相关的知识,希望对你有一定的参考价值。

来源: http://jingyan.baidu.com/article/2a1383284bb3e8074a134f2d.html

当我们使用sudo命令切换用户的时候可能会遇到提示以下错误:xxx is not in the sudoers file. This incident will be reported,xxx是你当前的用户名,究其原因是用户没有加入到sudo的配置文件里

技术分享

工具/原料

 
  • vi/vim

方法/步骤

 
  1. 1

    切换到root用户,运行visudo命令

    技术分享
  2. 2

    在打开的配置文件中,找到root ALL=(ALL) ALL,在下面添加一行

    xxx ALL=(ALL) ALL 其中xxx是你要加入的用户名称

    技术分享
  3. 3

    输入:wq保存并退出配置文件,再次使用sudo命令就不会有上面的提示了。

    END

注意事项

 
  • 编辑配置文件的时候最好使用visudo命令,否则可能会出现其他错误

以上是关于[转]Linux下is not in the sudoers file解决方法的主要内容,如果未能解决你的问题,请参考以下文章

Linux中“is not in the sudoers file”解决方法

[Linux] admin is not in the sudoers file 问题解决办法

Linux中“is not in the sudoers file”解决方法

Linux中普通用户用sudo执行命令时报”xxx is not in the sudoers file.This incident will be reported”错误

Linux下is not in the sudoers file解决方法

Linux下is not in the sudoers file解决方法