GRUB4DOS常见问题及解决方案,grub4dos常见问题


问题一、一直显示从usb启动但就是不动。原因是没有安装GRUB4DOS的MBR和PBR。
问题二、如下代码
timeout 10
default 0
color normal=0x0F highlight=0x0E helptext=0x0A heading=0x02 standard=0x02 border=0x77
graphicsmode -1 100:1000 100:1000 24:32
write 0x8274 0x2001

title win10 Install
find –set-root /bootmgr
chainloader /bootmgr

iftitle [ find –set-root /bootmgr ] Win7 or Win10
find –set-root /bootmgr
chainloader /bootmgr

title Win8PE
find –set-root /Win8PE.iso
map –mem /Win8PE.iso (hd32)
map –hook
chainloader (hd32)

title REBOOT
reboot

其中加粗的代码两个启动项最后都启动到Win10安装文件,GRUB4DOS会先扫描U盘分区然后是硬盘。因为两者都有bootmgr但都是先扫描U盘所以在U盘找到了就不会再去硬盘找了。

相关内容