I am setting up an Ubuntu 12.04.4 LTS PXE server. So here are the steps I proceeded with:
- Setup my DHCP server
- Setup my TFTP server
- Setup my NFS server
- I place the initrd.gz and kernel in the tftp directory.
- I created the pxelinux.cfg directory in the tftp directory and placed a default file.
- I placed the files in the nfs directory.
The installation is not working looks like NFS is not exporting any of the media installation files. This is the content of my default file:
prompt 1
timeout 20
default install
label install
menu label ^Install Ubuntu
kernel iso-image/ubuntu12.04amd64/install/vmlinuz
append file=http://"server IP"/iso-image/ubuntu12.04amd64/preseed/preseed.seed interface=eth1 priority=critical locale=en_US.UTF-8 console-setup/ask_detect=false keyboard-configuration/layoutcode=us netboot=nfs nfsroot="Server IP":/srv/boot/iso-image/ubuntu12.04amd64 initrd=iso-image/ubuntu12.04amd64/install/netboot/ubuntu-installer/amd64/initrd.gz
Can anyone help please?