| 
 | 
1. 用grubinst_gui给硬盘写入MBR 
2. 将GRLDR文件放置到任意分区根目录(最好是放到别的分区,这样就可以随意格式化C盘了...) 
3. 将启动文件等都放置到任意分区(最好不要是C盘,不然系统盘被格了, 这些工具也进不去了) 
4. 菜单文件menu.lst可以放置到任意分区根目录; /boot目录; /boot/grub目录(原版默认搜索这3个位置的menu.lst文件) 
 
 
menu.lst的配置 
 
假定grub4dos需要的字体文件fonts.gz在某个分区 /boot/grub目录 
假定grub4dos需要的背景文件xxxxx.gz在某个分区/boot/grub目录 
timeout 5 
default 0 
find --set-root /boot/grub/fonts.gz 
fontfile /boot/grub/fonts.gz 
splashimage /boot/grub/xxxxx.gz 
 
title 启动某个基于DOS的img文件(假定img文件名为myimg.ima,存放在某个分区的boot目录中) 
find --set-root /boot/myimg.IMA 
map --mem /boot/myimg.IMA (fd0) 
map --hook 
chainloader (fd0)+1 
rootnoverify (fd0) 
boot 
 
如果菜单中不使用中文, 也不想用背景 
则 
find --set-root /boot/grub/fonts.gz 
fontfile /boot/grub/fonts.gz 
splashimage /boot/grub/xxxxx.gz 
这3行可以删除或者注释掉  |   
 
 
 
 |