工具下载地址:http://qwerse.ys168.com(网络->网络启动->TinyPXEServer-Linux.zip)html
添加条目 pro6(配置文件已经配置好了,下载直接用)
从官网下载的iso,虽然是从debian改造的,可是不支持pxe的启动方式,会发生panic错误。linux
把官网的iso镜像下载到linux服务器上面。nginx
工具下载地址 https://github.com/morph027/pve-iso-2-pxe.git 执行sh脚本 参数为iso的具体文件位置。就能够转换了。 转换成功会生成pxeboot文件夹,里面放着可引导的文件内核及镜像
nginx的主要做用是提供可引导的文件内核及镜像下载,pxe自带工具的http服务容易崩溃。git
#nginx的配置文件,808端口和menu.txt的配置相呼应 server { listen 808; server_name *.*; location / { #root D:/list-do/TinyPXEServer-Linux/files/; root F:\list-do\pro6; autoindex on; #开启文件服务 index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } }
具体熟悉pxe的教程(有道云教程)github