Fedora/Centos ipxe bootscripts.
Been spending time looking at booting systems to the net to install linux operating systems. So far we have looked at Arch and Debian based systems. Both Fedora and Centos have pre-made iso's for network install. Centos: http://www.centos.org/download/ Fedora: http://fedoraproject.org/en/get-fedora But if you want to roll your own, here are some scripts to look at: Fedora #!ipxe dhcp any # Set source URI set mirror http://download.fedoraproject.org/pub/fedora/linux/releases/20 # Detect CPU architecture and calculate repository URI set arch i386 set repo ${mirror}/Fedora/${arch}/os # Start installer kernel ${repo}/images/pxeboot/vmlinuz initrd=initrd.img repo=${repo} initrd ${repo}/images/pxeboot/initrd.img boot or #!ipxe dhcp any # Set source URI set mirror http://download.fedoraproject.org/pub/fedora/linux/releases/18 ...