|
推荐
楼主 |
发表于 2014-7-14 12:46:06
|
只看该作者
把MENU.LST放入BOOT内, 在boot/grub/也放入menu.lst
----------------------------------------------------------------------------------------------------
pxe detect
configfile
default 0
timeout 1
title find /menu.lst, /boot/grub/menu.lst, /grub/menu.lst
errorcheck off
configfile /boot/grub/menu.lst
configfile /grub/menu.lst
if "%@root%"=="(ud)" && calc *0x82A0=*0x82b9&0xff
if "%@root:~1,1%"=="f" && find --set-root --devices=f /menu.lst && configfile /menu.lst
find --set-root --ignore-floppies --ignore-cd /menu.lst && configfile /menu.lst
find --set-root --ignore-floppies --ignore-cd /boot/grub/menu.lst && configfile /boot/grub/menu.lst
find --set-root --ignore-floppies --ignore-cd /grub/menu.lst && configfile /grub/menu.lst
errorcheck on
commandline
title commandline
commandline
title reboot
reboot
title halt
halt
----------------------------------------------------------------------------------------------------
新电脑能启动,为什么在旧电脑(旧电脑不支持USB-HDD,用USB-ZIP+写入)不能启动。
MENU.LST在neyan/MENU.LST , neyan文件夹在U盘根目录,我改成了以下的
------------------------------------------------------------------------------------------
pxe detect
configfile
default 0
timeout 1
title find /MENU.LST, /neyan/MENU.LST
errorcheck off
configfile /neyan/MENU.LST
if "%@root%"=="(ud)" && calc *0x82A0=*0x82b9&0xff
if "%@root:~1,1%"=="f" && find --set-root --devices=f /MENU.LST && configfile /MENU.LST
find --set-root --ignore-floppies --ignore-cd /neyan/MENU.LST && configfile /neyan/MENU.LST
find --set-root --ignore-floppies --ignore-cd /MENU.LST && configfile /MENU.LST
errorcheck on
commandline
title commandline
commandline
title reboot
reboot
title halt
halt
-----------------------------------------------
新电脑能启动,在旧电脑(不支持USB-HDD,用USB-ZIP+写入)上也不能启动。
用旧的方法grldr引导neyan/menu改成grldr引导neyan/MENU.LST
------------------------------------------------------------------------
pxe detect
configfile
default 0
timeout 0
title menu
errorcheck off
find --set-root /neyan/MENU.LST && configfile /neyan/MENU.LST
errorcheck on
commandline
title commandline
commandline
title reboot
reboot
title halt
halt
-------------------------------------------------------------------------------
在新旧电脑都能启动,旧电脑有的不支持USB-HDD,用USB-ZIP+写入的上也能启动了。这是怎么回事??? 新的写法不应该更好的吗? |
|