|
|
###GRUB4DOS系统引导
timeout 120
default 0
fallback 1
fontfile /boot/grub/fonts
splashimage /boot/grub/splash.xpm.gz
###
title 各项程序运行密码为:123000
clear
###
title GHOST备份Local-Partition-To lmage 还原Local-Partition-From Lmage
clear
###
title GHOST11.0.2磁盘备份
password 123000
map --mem /boot/grub/Ghost11.0.2.img (fd0)
map --hook
chainloader (fd0)+1
rootnoverify (fd0)
###
title GHOST8.3磁盘备份
password 123000
map --mem /boot/grub/Ghost83.img (fd0)
map --hook
chainloader (fd0)+1
rootnoverify (fd0)
###
title 清除2000/XP密码
password 123000
map --mem /boot/grub/PASSWORD.IMG (fd0)
map --hook
chainloader (fd0)+1
rootnoverify (fd0)
###
title 运行DOS
map --mem /boot/grub/WIN98SE.IMG (fd0)
map --hook
chainloader (fd0)+1
rootnoverify (fd0)
###
title ─────────────────────────────────────
clear
###
title 启动Windows XP/2000
find --set-root --ignore-floppies /ntldr
chainloader /ntldr
###
title 启动Windows 7/Vista
find --set-root --ignore-floppies /bootmgr
chainloader /bootmgr
###
title 启动Linux
root (hd0,9)
kernel /boot/vmlinuz-2.6.27.10-1_3 ro root=LABEL=/ vga=788 splash=silent
initrd /boot/initrd-2.6.27.10-1_3.img
###
title 安装Linux
root (hd0,0)
kernel /isolinux/vmlinuz
initrd /isolinux/initrd.img
###
title ─────────────────────────────────────
clear
###
title 重启计算机
reboot
###
title 关闭计算机
halt |
|