快速业务通道

Linux让普通用户也能执行shutdown

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-03-27

以Fedora5为例,其它诸如Ubuntu之类也类似.

当前用户名为:test,为一普通用户.在输入关机命令会出现must be superuser,需要超级用户来执行此命令.操作如下:

[test@localhost ~]$ halt
halt: must be superuser.

经测试本人发现,可以使用umask命令来设置,如下:

[test@localhost ~]$ su -
Password:
[root@localhost ~]# which halt
/sbin/halt
[root@localhost ~]# ll /sbin/halt
-rwxr-xr-x 1 root root 12584 Feb 14 2006 /sbin/halt
[root@localhost ~]#
chmod 4755 /sbin/halt

[root@localhost ~]# ll /sbin/halt
-rwsr-xr-x 1 root root 12584 Feb 14 2006 /sbin/halt

[root@localhost ~]# exit

[test@localhost ~]$ halt


Broadcast message from root (pts/1) (Thu May 19 12:25:35 2011):

The system is going down for system halt NOW!

比较一下就会发现,当普通用户执行halt命令时,系统反馈说“需要超级用户来执行”,意思是可以找到我,但是你没有执行我的权限.

而shutdown 命令就不同了,普通用户执行它时,系统反馈为:“没有找到相关命令”,意思是你找不到我,当然更没有执行我的权限.

[test@localhost ~]$ shutdown
-bash: shutdown: command not found
针对这个问题,又该如何解决呢?呵呵.

[test@localhost ~]$ su -
Password:
[root@localhost ~]# chmod 0755 /sbin/shutdown
[root@localhost ~]# which shutdown
/sbin/shutdown
[root@localhost ~]# ll /sbin/shutdown
-rwxr-xr-x 1 root root 21872 Feb 14 2006 /sbin/shutdown
[root@localhost ~]# chmod 4755 /sbin/shutdown
[root@localhost ~]# ll /sbin/shutdown
-rwsr-xr-x 1 root root 21872 Feb 14 2006 /sbin/shutdown

修改完成后尝试执行如下:

[test@localhost ~]$ shutdown -h now
-bash: shutdown: command not found

还是不行!?

通过命令echo $PATH 发现里面有没有/sbin这个路径,如果执行shutdown命令可以直接输入绝对路径.如下:

[test@localhost ~]$ /sbin/shutdown -h now

Broadcast message from root (pts/1) (Thu May 19 12:56:09 2011):

The system is going down for system halt NOW!

【完】

本文出自 “天匆云汇” 博客,请务必保留此出处http://tiancong.blog.51cto.com/783138/655866

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号