我使用过的Linux命令之halt - 停止系统运行,但不关闭电源

我使用过的Linux命令之halt - 停止系统运行,但不关闭电源

本文链接:http://codingstandards.iteye.com/blog/988420   (转载请注明出处)

用途说明

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.

 

还得手工关闭电源。

 

示例二

问题思考

相关资料

【1】phpArticle Linux关机命令详解
http://www.21ds.net/article/31/554
【2】Blinux linux halt 立即停止系统
http://www.shocr.com/linux-halt/

返回 我使用过的Linux命令系列总目录

猜你喜欢

转载自codingstandards.iteye.com/blog/991255