|
一个例子
GRUB4DOS
grubinst
用grubinst重写移动硬盘的mbr,然后把grub4dos的grldr拷到移动硬盘,完了在移动硬盘建menu.lst文件,内容如下(参考),然后CMOS设USB-HDD启动。
# 设置图形背景文件
find --set-root /boot/myudisk.ico
splashimage /boot/grub/Splash.xpm.gz
fontfile /boot/grub/fonts
# 设置动画图形菜单文件
#foreground ffffff
background 008080
timeout 60
default 0
title [0] 毛桃集成红叶 PE 应急系统 (可安装Vista)
chainloader /boot/ldrxpe (hd0)+1
title 启动本机 Windows NT 系统
#find --set-root /ntldr
#chainloader /ntldr
map (hd0) (hd1)
map (hd1) (hd0)
rootnoverify (hd1,0)
chainloader +1
title 启动本机 Vista 系统
find --set-root /bootmgr
chainloader /bootmgr
title 重启计算机
reboot
title 关机
halt |
|