是否可以使用HTTP(而不是NFS)通过PXE启动Ubuntu的LiveCD?

我发现很多博客都解释了如何通过PXE启动安装程序。 而且我已经实现了它。 但现在我想启动一个LiveCD。 我见过许多博客解释如何使用(DHCP + TFTP +)NFS服务器,但我的基础设施只有一个(DHCP +)HTTP服务器(后者用于存储pxelinux.0,内核+ initrd文件和isos挂载点也是如此)。 HTTP中有一些内核参数“等效”到NFS的netboot = nfs nfsroot = serverIp:/ mount / point …… ??? 谢谢!!

是的,ubuntu iso用于Windows上的测试我使用tftp32和freenfs和vmware c:\ tftpd32 \ ubuntu \(unziped iso)路径tftp32 c:\ tftpd32 \ path nfs c:\ tftp32 \

LABEL Ubuntu linux Install KERNEL ubuntu/casper/vmlinuz APPEND root=/dev/nfs boot=casper only-ubiquity netboot=nfs nfsroot=192.168.0.1:/ubuntu ip=192.168.0.5:192.168.0.1:192.168.0.1:255.255.255.0:linux::none file=preseed/ubuntu.seed initrd=ubuntu/casper/initrd.lz quiet splash locale=ru_RU -- LABEL Ubuntu linux Live Boot KERNEL ubuntu/casper/vmlinuz APPEND root=/dev/nfs boot=casper netboot=nfs nfsroot=192.168.0.1:/ubuntu ip=192.168.0.5:192.168.0.1:192.168.0.1:255.255.255.0:linux::none file=preseed/ubuntu.seed initrd=ubuntu/casper/initrd.lz quiet splash locale=ru_RU --