| 
 | 
 本帖最后由 2011cwj6958 于 2018-10-3 02:02 编辑  
 
title Loading  (hd0,0) 
root (hd0,0) 
chainloader +1 
 
要引导Linux,分区要写入对应版本SYSLINUX引导记录才能启动 
 
给你典型菜单示例参考 
 
title Loading GRUB2 
find --set-root /g2ldr.mbr 
chainloader /g2ldr.mbr 
#搜索任意分区根目录下的g2ldr.mbr文件启动 
 
 
title Loading GRUB-ZDCD 
root (hd0,2) 
chainloader /grldr 
#启动第一磁盘第三分区根目录下的grldr文件 
 
title  SBZLWIN8PEV1.0.ISO 
find --set-root /SBZL.ISO 
map --mem / (0xff) 
map --hook 
chainloader (0xff) 
#搜索任意分区根目录下的SBZL.ISO文件启动 
 
title SBZLWIN8PEV1.0.ISO 
find --set-root /SBZL.ISO 
map --mem /SBZL.ISO (hd32) 
map --hook 
chainloader (hd32) 
boot 
#搜索任意分区根目录下的SBZL.ISO文件启动 
 
title Loading  (hd0,0) 
root (hd0,0) 
chainloader +1 
#启动第一磁盘第1分区 
 
title Loading  (hd0,1) 
root (hd0,1) 
chainloader +1 
#启动第一磁盘第2分区 
 
title Loading  (hd0,2) 
root (hd1,2) 
chainloader +1 
#启动第2磁盘第3分区 
 
title Loading  (hd0) 
root (hd0) 
chainloader +1 
#启动第1磁盘主引导 
 
title Loading  (hd1) 
root (hd1) 
chainloader +1 
#启动第2磁盘主引导 
 |   
 
 
 
 |