|
原帖由 canmao 于 2010-5-21 10:55 发表
用20100520菜单返回模块,测试了3台Dell:
1. Latitude X300 (04年的P4本本)
2. PE SC430 (dell最低档的服务器)
3. PE M600 (dell Intel CPU 刀片)
测试结果如下:
X300SC430 M600 硬盘直接启动 正 ...
谢谢测试反馈!
PXE启动比较简单,把启动菜单menu.lst不要内置放在TFTP根下就能解决。
menu.lst不内置放在TFTP根下的好处是,启动快,修改容易。
这个测试也说明pxe detect初始化PXE后,只调用menu.lst或menu.lst\default
也说明DELL服务器系列的BIOS是正常的,只有台式机及笔记本BIOS是故意捣乱的。
把MENU改成这样:
terminal console
color white/blue blue/yellow light-red/blue 10
default 0
timeout 50
title [0] Return GRUB4DOS Boot Menu \n Return first boot menu
checkrange 1 read 0x60100 && write 0x8280 0x21 && write 0x82a0 0x21 && pxe detect && configfile /MENU.LST || chainloader /GRLDR
checkrange 2 read 0x60100 && root (hd0,0) && chainloader (hd0)+1
checkrange 1:2 read 0x60100 || find --set-root /MENU.LST && configfile /MENU.LST && boot
checkrange 1:2 read 0x60100 || find --set-root /GRLDR && chainloader /GRLDR
boot
这样PXE也可以内置菜单
[ 本帖最后由 zhaohj 于 2010-5-21 11:21 编辑 ] |
|