码迷,mamicode.com
首页 > 其他好文 > 详细

sudo使用权

时间:2015-09-11 09:19:20      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

某某用户 is not in the sudoers file.  This incident will be reported.” 
(用户不在sudoers文件中……)


现在要让某某用户获得sudo使用权
1.切换到超级用户root
   $su root
2.查看/etc/sudoers权限,可以看到当前权限为440
   $ ls -all /etc/sudoers
   -r--r----- 1 root root 744  6月  8 10:29 /etc/sudoers
3.更改权限为777
   $chmod 777 /etc/sudoers

4.编辑/etc/sudoers
   $vi /etc/sudoers
5.在root    ALL=(ALL:ALL) ALL 下面添加一行
   jack    ALL=(ALL)ALL
   然后保存退出。
  
 第一个ALL是指网络中的主机,我们后面把它改成了主机名,它指明jack可以在此主机上执行后面的命令。
   第二个括号里的ALL是指目标用户,也就是以谁的身份去执行命令。
   最后一个ALL当然就是指命令名了。
   具体这里不作说明
6.把
/etc/sudoers权限改回440
  
 $chmod 440 /etc/sudoers

7.操作完成,切换到某某用户测试一下


sudo使用权

标签:

原文地址:http://my.oschina.net/u/2425280/blog/504749

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!