|
本帖最后由 liuzhaoyzz 于 2025-3-9 11:11 编辑
@2011yaya2007777,chenall的脚本感觉确实有问题,用ipxegrldr作为引导文件名字的时候,用HaneWINDHCP启动时,总是先从http://b.chenall.net/grldr下载,然后find /menu.lst, /boot/grub/menu.lst, /grub/menu.lst,在内网可以访问外网的情况下,结果是优先查找http://b.chenall.net/网上的menu.lst,而不是直接找pd上面的menu.lst,这个很费时间,而且网上的菜单根本就不是大家实际想要的菜单(见下图2),能否改进下?另外我看最新版的grub4dos-0.4.6a-2024-02-26里面怎么没有ipxegrldr了?
#!ipxe
set use-cached 0
dhcp
imgload -a -n grldr0 -t 3000 http://b.chenall.net/grldr || goto embed
imgfree grldr
boot grldr0 || goto failed
:embed
imgload grldr
boot grldr || goto failed
:failed
echo Booting failed, dropping to shell
:shell
shell
goto shell
================================
第一段直接注释掉,改为下面的就可以重新编译了:
#!ipxe
set use-cached 0
dhcp
#imgload -a -n grldr0 -t 3000 http://b.chenall.net/grldr || goto embed
#imgfree grldr
#boot grldr0 || goto failed |
|