| 
 | 
6#
 
 
 楼主 |
发表于 2014-1-29 10:39:32
|
只看该作者
 
 
 
 本帖最后由 mdyblog 于 2014-1-29 13:31 编辑  
 
 
直接下载, 没有添加 GRUB2启动条目。 
就手动启动GRUB2吧。 
上面是: 安装MBROS到U盘后, 把winly(Grub2)拷贝到 U盘第一分区。 
root (hd0,0) 
kernel /winlyldr 
boot 
这样就启动了GRUB2。 当然可以把GRUB2放到ExUD 内部,还可让他直接启动GRUB2,变成ExUD-Grub2。 
后面就是上图。 
启动U盘标准GRUB2为: 
root (hd0,0) 
kernel /grub2/core.img  
boot 
 
 
---------------GRUB2 
GRUB2启动DOS虚拟盘: 
 
menuentry "Boot DOS from floppy image (with 'raw' parameter)" { 
     linux16  /boot/grub/memdisk raw 
    initrd16 /boot/imgs/DISKGEN.IMG 
} 
 
 
GRUB2启动PE-ISO虚拟光驱: 
menuentry "Boot Hardware Detection Tool from iso" { 
     linux16  /boot/grub/memdisk iso 
    initrd16 /MINIPE/Win8PE64.iso 
} 
 
 
GRUB2启动PE-虚拟磁盘: 
menuentry "Boot Hardware Detection Tool from iso" { 
    linux16  /boot/grub/memdisk harddisk 
    initrd16 /MINIPE/Win8PE64.img 
} 
// harddisk 参数一般可省  
//  http://www.syslinux.org/wiki/index.php/MEMDISK |   
 
 
 
 |