红联Linux门户
Linux帮助

Linux命令之halt-停止系统运行但不关闭电源

发布时间:2015-02-05 09:33:25来源:linux网站作者:codingstandards

用途说明

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.

还得手工关闭电源。