我发现很多博客解释如何通过PXE引导安装程序。我已经做到了。但是现在我想启动一个LiveCD。我看过很多博客,解释如何使用(DHCP+TFTP+)NFS服务器来实现这一点,但是我的基础设施只有一个(DHCP+)HTTP服务器(后者也用于存储pxelinux.0、kernel+initrd文件和isos挂载点)。在HTTP中是否有一些内核参数与NFS的netboot=nfs nfsroot=serverIp:/挂载/点.??谢谢!!
发布于 2014-12-26 20:27:16
是的,ubuntu在windows上测试时使用tftp32和freenfs,vmware c:\tftpd32\ubuntu\ (unziped iso)路径tftp32 c:\tftpd32\ path nfs c:\tftp32 32\\tftp32 32\
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 --https://askubuntu.com/questions/549775
复制相似问题