Chinaunix首页 | 论坛 | 博客
  • 博客访问: 943918
  • 博文数量: 162
  • 博客积分: 6207
  • 博客等级: 准将
  • 技术积分: 1687
  • 用 户 组: 普通用户
  • 注册时间: 2006-02-10 01:36
个人简介

80后技术男

文章分类

全部博文(162)

文章存档

2013年(6)

2012年(20)

2011年(24)

2010年(8)

2009年(13)

2008年(37)

2007年(35)

2006年(19)

分类: LINUX

2006-09-24 22:51:21

配制文件在
/etc/sudoers
 

billy  workstation = /usr/bin/*

user billy will be able to run any command in /usr/bin as root, such as /usr/bin/w. The following two command will be allowed (the first assumes that /usr/bin is in the user's path):

    $ sudo w
    $ sudo /usr/bin/w

However, this will not:

    $ cd /usr/bin
    $ sudo ./w

For this reason you should only grant access to commands using wildcards and never restrict access using them. This limitation will be removed in a future version of sudo.

tester ALL(主机的名字)=NOPASSWD: /bin/kill,PASSWD: /bin/ls, /usr/bin/lprm

tester ALL=(ALL)       ALL

例如以下

给apache用户本地主机不用输入密码能够执行特定目录的脚本权限

apache  localhost=NOPASSWD:/avtech/apps/future/vhcs/command/*.sh,/bin/cp


参见

阅读(1820) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~