您的位置:首页 > 其它

reboot和init 6的区别

2016-07-22 21:38 435 查看
偶然一次机会:利用init 6重启机器,打开浏览器发现竟然还是保存这关机前的浏览网页,但是利用reboot就没有。

对此进行了搜索,结果如下:

对两个命令用man查询了一下:

init 6 Stop the operating system and reboot to the state defined by the initdefault entry in /etc/inittab.

reboot - reboot performs a sync(1M) operation on the disks, and then a

"init 6" 基于一系列/etc/inittab文件,并且每个应用都会有一个相应shutdown脚本。

'init 6' 调用一系列shutdown脚本(/etc/rc0.d/K*)来使系统优雅关机;

'reboot'并不执行这些过程,reboot更是一个 kernel级别的命令,不对应用使用shutdown脚本。 .

我们应该在通常情况下使用 init 6.

在出问题的状况下或强制重启 时使用reboot.

reboot is a more aggresive command to use. init 6 is much graceful

use of `init 6` will give the cleanest and orderly reboot (init informs svc.startd of the runlevel change and will move to the appropriate milestone).
use of `shutdown -y -g0 -i6 **message**` will invoke init as well as give you grace period and messages to user (shutdown invoked the same as init above).
halt,reboot,poweroff will not run any of the shutdown scripts and should be last resort.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: