unrecognized service

报错:danny is not in the sudoers file. This incident will be reported.

解决方法如下:
1.进入超级用户模式。也就是输入"su -",系统会让你输入超级用户密码,输入密码后就进入了超级用户模式。

2.添加sudo文件的写权限,命令是:chmod u+w /etc/sudoers

3.编辑sudoers文件,vim /etc/sudoers
找到这行 root ALL=(ALL) ALL,在他下面添加xxx ALL=(ALL) ALL (这里的xxx是你的用户名)
ps:这里说下你可以sudoers添加下面四行中任意一条
youuser ALL=(ALL) ALL //允许用户youuser执行sudo命令(需要输入密码)
%youuser ALL=(ALL) ALL //允许用户组youuser里面的用户执行sudo命令(需要输入密码)
youuser ALL=(ALL) NOPASSWD: ALL //允许用户youuser执行sudo命令,并且在执行的时候不输入密码
%youuser ALL=(ALL) NOPASSWD: ALL //允许用户组youuser里面的用户执行sudo命令,并且在执行的时候不输入密码

4.撤销sudoers文件写权限,命令:
chmod u-w /etc/sudoers

这样普通用户就可以使用sudo。

posted @ 2014-10-05 08:55  chromebook  阅读(1787)  评论(0编辑  收藏  举报