本文主要是介绍user is not in the sudoers file,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
出现这种情况是因为用户user没有sudo权限。解决办法自然是将当前用户添加到sudo成员中。
1.以root身份登录。
2.更改文件权限:
# chmod u+w /etc/sudoers
3.在/etc/sudoers文件中,root ALL=(ALL)ALL下方添加:
user ALL=(ALL)ALL
保存退出。
4.还原文件权限:
# chmod u-w /etc/sudoers
参考:
http://www.cnblogs.com/evasnowind/archive/2011/02/04/1949113.html
这篇关于user is not in the sudoers file的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!