发布时间:2014-09-05 17:00:55作者:知识屋
以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!
【完】
作者 “天匆云汇”
linux一键安装web环境全攻略 在linux系统中怎么一键安装web环境方法
Linux网络基本网络配置方法介绍 如何配置Linux系统的网络方法
Linux下DNS服务器搭建详解 Linux下搭建DNS服务器和配置文件
对Linux进行详细的性能监控的方法 Linux 系统性能监控命令详解
linux系统root密码忘了怎么办 linux忘记root密码后找回密码的方法
Linux基本命令有哪些 Linux系统常用操作命令有哪些
Linux必学的网络操作命令 linux网络操作相关命令汇总
linux系统从入侵到提权的详细过程 linux入侵提权服务器方法技巧
linux系统怎么用命令切换用户登录 Linux切换用户的命令是什么
在linux中添加普通新用户登录 如何在Linux中添加一个新的用户
2012-07-10
CentOS 6.3安装(详细图解教程)
Linux怎么查看网卡驱动?Linux下查看网卡的驱动程序
centos修改主机名命令
Ubuntu或UbuntuKyKin14.04Unity桌面风格与Gnome桌面风格的切换
FEDORA 17中设置TIGERVNC远程访问
StartOS 5.0相关介绍,新型的Linux系统!
解决vSphere Client登录linux版vCenter失败
LINUX最新提权 Exploits Linux Kernel <= 2.6.37
nginx在网站中的7层转发功能