ubuntu sudo is not in the sudoers file.

用useradd增加的用户lqx,使用sudo时,提示如下错误:

 lqx is not in the sudoers file. This incident will be reported

解决:

切换用户,或者su一下,切换到root用户,这里采用切换到root用户的办法:

接下来 chmod  u+w  /etc/sudoers

vi  /etc/sudoers

找到这一行:“root   ALL=(ALL) ALL”

在下面添加  lqx   ALL=(ALL) ALL

保存退出

chmod u-x  /etc/sudoers

退出root用户,ok。。。。


你可能感兴趣的:(ubuntu sudo is not in the sudoers file.)