|
我试过解决 mbr装 grub4dos, 或者 syslinux 转 grldr, grldr chainloader io.sys, command.com not found 的问题,
处理方法是 geometry --tune.
例如: 我的 usb-zip, syslinux转 grldr 后, grldr 内置菜单如下:
#如果被认成了hd, 那么就是 (hd0,3), 从这里找到配置.
#先判断硬盘, 因为这个判断快.
geometry --tune (hd0)
cat --length=0 (hd0,3)/BOOT/GRUB/MENU_ZIP.LST && rootnoverify (hd0,3) && configfile /BOOT/GRUB/MENU_ZIP.LST
#如果是认成了 fd, 就是 fd0 了.
geometry --tune (fd0)
cat --length=0 (fd0)/BOOT/GRUB/MENU_ZIP.LST && rootnoverify (fd0) && configfile /BOOT/GRUB/MENU_ZIP.LST
commandline
之后 grub 启动 io.sys, 就不会 command.com not found 了. |
|