|
本帖最后由 幸福夜车 于 2014-11-15 22:00 编辑
请C大内置一个ipxe菜单吧,经过反复试验,自建一个ipxe菜单是可行的,速度确实快了很多,用ipxe加载启动手机卡上30M的pe只需用不到10秒钟
不懂怎么写,网上弄了两个,依葫芦画瓢,结果如下
第一种,如果手机上和电脑上有同文件名的pe,那么加载的是电脑上的,同时又发现台式机正常启动,笔记本则蓝屏,换了几种PE在笔记本上都是蓝屏,改用第二种方式,台式机,笔记本均正常启动pe
#!ipxe
:tryit
dhcp || goto tryit
initrd http://${next-server}/0pe.iso
chain http://${next-server}/memdisk iso raw || goto retry
第二种,如果手机上和电脑上有同文件名的pe,那么加载的仍然是手机卡上的pe
#!ipxe
dhcp
isset ${next-server} || set next-server 192.168.200.200 #自行指定服务器ip
initrd http://${next-server}/0PE.ISO #自行指定加载ISO
chain http://${next-server}/grub.exe --config-file="map (rd)+1 (0xff);map --hook;chainloader (0xff)"
另外:对于内置卡空间不够的,改为外置卡,怎么办?
|
|