| 
 | 
回复 #7 2011GameBoy 的帖子
用 Grub2 引导 MBR、BPR: 
 
menuentry "MBR、BPR" { 
    set root=(hdX,Y) 
    chainloader (hdX,Y)+1 
} 
 
Grub4Dos  引导 Grub2 
 
title grub2 
        errorcheck off 
        find --set-root --devices=h /grub/core.img && kernel /grub/core.img && boot 
        find --set-root --devices=h /boot/grub/core.img && kernel /boot/grub/core.img && boot  
        find --set-root --devices=h /grub/i386-pc/core.img && kernel /grub/i386-pc/core.img && boot 
        find --set-root --devices=h /boot/grub/i386-pc/core.img && kernel /boot/grub/i386-pc/core.img && boot 
        errorcheck on 
        commandline |   
 
 
 
 |