解决sudo: no valid sudoers sources found, quitting

post by rocdk890 / 2012-10-30 14:44 Tuesday linux技术
  在上一篇文章xxx is not in the sudoers file.This incident will be reported.的解决方法里,我给普通用户设置了可以使用sudo,今天老大要求普通用户输入sudo的时候,不需要密码.
  系统:centos 6.3
1.设置普通用户可以使用sudo
chmod u+w /etc/sudoers
vi /etc/sudoers
找到这行 root ALL=(ALL) ALL,在他下面添加
username ALL=(ALL)                NOPASSWD: ALL
再找到下面这句
#%wheel  ALL=(ALL)         NOPASSWD: ALL
改成
%wheel  ALL=(ALL)         NOPASSWD: ALL
保存退出后执行:
gpasswd -a username wheel
将你的用户(普通用户)调整至wheel用户组里面,这样就可以以后用户执行sudo就不用输入密码了.

2.恢复/etc/sudoers的权限
因为我没有把/etc/sudoers的权限恢复成440,就切换到普通用户下去执行:
sudo ifconfig
报以下错误:
sudo: /etc/sudoers is mode 0640, should be 0440
sudo: no valid sudoers sources found, quitting
退出普通用户,在root下执行:
chmod u-w /etc/sudoers

chmod 440 /etc/sudoers
再到普通用户执行
sudo ifconfig eth0
eth0      Link encap:Ethernet  HWaddr 22:00:0A:84:05:83
          inet addr:10.132.5.11  Bcast:10.132.5.191  Mask:255.255.255.192
          inet6 addr: fe80::2000:aff:fe84:583/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:6034 errors:0 dropped:0 overruns:0 frame:0
          TX packets:4242 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:657163 (641.7 KiB)  TX bytes:669943 (654.2 KiB)
          Interrupt:246
可以看到执行sudo成功了.
夜空- 本站版权
1、本站所有主题由该文章作者发表,该文章作者与夜空享有文章相关版权
2、其他单位或个人使用、转载或引用本文时必须同时征得该文章作者和夜空的同意
3、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责
4、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意
5、原文链接:blog.slogra.com/post-271.html

标签: 权限 sudo 普通用户 sudoers 不能使用