本文主要是介绍User not in the sudoers file. This incident will be reported,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在Ubuntu 中使用sudo 时,会发现提示 User not in the sudoers file. This incident will be reported这样的错误,你可以修改/etc/sudoers下面的这个文件,把当前用户添加到里面,这是一种修改 办法。
还有一个办法是使用下面的命令:
id user_name
查看以下当前用户所属组有哪些,看下其中是否有adm或者sudo 这两个组,若没有属于这两个组请使用下面的命令添加当前用户到这两个组:
1,先切换到root帐号下
su -
2.然后执行下面的命令
usermod -G adm,cdrom,sudo,dip,plugdev,lpadmin,sambashare user_name
3,然后重新启动一下系统。
打开terminal进,就重新使用sudo 这个命令时就不会出现这样的错误了。
这篇关于User not in the sudoers file. This incident will be reported的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!