linux给用户加入sudo权限
Posted ljbguanli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux给用户加入sudo权限相关的知识,希望对你有一定的参考价值。
linux给用户加入sudo权限:
有时候,linux以下执行sudo命令,会提示类似:
xxxis not in the sudoers file. This incident will be reported.
这里,xxx是username称。然后导致无法运行sudo命令,这时候,例如以下解决:
有时候,linux以下执行sudo命令,会提示类似:
xxxis not in the sudoers file. This incident will be reported.
这里,xxx是username称。然后导致无法运行sudo命令,这时候,例如以下解决:
-
进入超级用户模式。
也就是输入"su -",系统会让你输入超级用户password,输入password后就进入了超级用户模式。(当然。你也能够直接用root用)
-
加入文件的写权限。也就是输入命令"chmod u+w /etc/sudoers"。
-
编辑/etc/sudoers文件。
也就是输入命令"vim /etc/sudoers",进入编辑模式,找到这一 行:"root ALL=(ALL) ALL"在起以下加入"xxx ALL=(ALL) ALL"(这里的xxx是你的username)。然后保存退出。
-
撤销文件的写权限。
也就是输入命令"chmod u-w /etc/sudoers"。
然后即可了
以上是关于linux给用户加入sudo权限的主要内容,如果未能解决你的问题,请参考以下文章