用shurdown -h now命令、init 0命令、power off命令,都不能彻底断电,只能进入挂起状态,也就是进入system halted,但是系统电源没有断掉,每次只能手动断电。
终于在网上找到解决方法:
用
# vi /etc/grub.conf
进行文件编辑
我的原来内容是:
################################################
# grub.conf
# It'll be used by grub.
# You can modify it yourself.
# Enjoy it! Good luck!
################################################
default=0
timeout=30
gfxmenu=(hd0,8)/boot/message
splashimage=(hd0,8)/boot/grub/splash.xpm.gz
title RedFlag Linux Desktop 7.0 (kernel release 2.6.29.1-112.dt7.i586)
root (hd0,8)
kernel /boot/vmlinuz-2.6.29.1-112.dt7.i586 ro vga=788 root=/dev/sda9 quiet rhgb
initrd /boot/initrd-2.6.29.1-112.dt7.i586.img
修改后是:
################################################
# grub.conf
# It'll be used by grub.
# You can modify it yourself.
# Enjoy it! Good luck!
################################################
default=0
timeout=30
gfxmenu=(hd0,8)/boot/message
splashimage=(hd0,8)/boot/grub/splash.xpm.gz
title RedFlag Linux Desktop 7.0 (kernel release 2.6.29.1-112.dt7.i586)
root (hd0,8)
kernel /boot/vmlinuz-2.6.29.1-112.dt7.i586 ro vga=788 root=/dev/sda9 apm=on apm=power-off quiet rhgb
initrd /boot/initrd-2.6.29.1-112.dt7.i586.img
我修改后再次关机,真的能自动断电了,非常OK。
文章评论(0条评论)
登录后参与讨论