用途说明
halt命令可以停止系统运行,但不关闭电源;poweroff命令也可实现关机,同时关闭电源。它们两个都是调用shutdown命令来进行的,reboot可以将机器重启。
常用方式
格式:halt
格式:shutdown -h
停止系统运行,但不关闭电源。
格式:poweroff
停止系统运行,同时关闭电源。
格式:reboot
重启系统。
使用示例
示例一
[root@node34 root]# halt
Broadcast message from root (pts/1) (Wed Mar 30 12:57:13 2011):
The system is going down for system halt NOW!
[root@node34 root]#
到控制台的第一屏去看,最后几行为
Sending all processes the TERM singal … [ OK ]
Sending all processes the KILL singal … [ OK ]
Syncing hardware clock to system time [ OK ]
Turning off swap: [ OK ]
Turning off quotas: [ OK ]
Unmounting file systems: [ OK ]
Halting system…
md: stopping all md devices
flushing ide devices: hdc
System halted.
还得手工关闭电源。