|
楼主 |
发表于 2005-12-22 21:16:06
|
显示全部楼层
Post by zqpytrjb
楼上两个,
先看看关机的时候最后有什么提示,
前面的步骤一切正常,没有什么特别的提示!
Post by zqpytrjb
楼上两个,
再看看/etc/init.d/halt脚本是否正确,
我是新手,不懂这些脚本,复制过来,高手帮忙看看。
#! /bin/sh
#
# halt Execute the halt command.
#
# Version: @(#)halt 2.85-22 19-Jun-2004 miquels@cistron.nl
#
PATH=/sbin:/bin:/usr/sbin:/usr/bin
# Get the default from /etc/default/halt.
[ -f /etc/default/halt ] && . /etc/default/halt
if [ "$INIT_HALT" = "" ]
then
case "$HALT" in
[Pp]*)
INIT_HALT=POWEROFF
;;
[Hh]*)
INIT_HALT=HALT
;;
*)
INIT_HALT=POWEROFF
;;
esac
fi
# See if we need to cut the power.
if [ "$INIT_HALT" = "OWEROFF" ] && [ -x /etc/init.d/ups-monitor ]
then
/etc/init.d/ups-monitor poweroff
fi
# Don't shut down drives if we're using RAID.
hddown="-h"
if grep -qs '^md.*active' /proc/mdstat
then
hddown=""
fi
# If INIT_HALT=HALT don't poweroff.
poweroff="-p"
if [ "$INIT_HALT" = "HALT" ]
then
poweroff=""
fi
halt -d -f -i $poweroff $hddown
: exit 0
Post by zqpytrjb
楼上两个,
看看/etc/rc0.d目录下是否有halt脚本的link
里面有,这个应该没问题。
多谢!! |
|