Skip to content

Instantly share code, notes, and snippets.

@schlomo
Last active October 27, 2015 04:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schlomo/3c952efd8852dad3d600 to your computer and use it in GitHub Desktop.
Save schlomo/3c952efd8852dad3d600 to your computer and use it in GitHub Desktop.
iPXE Installation menu with several Linux Distributions and Live CDs
#!ipxe
menu Bitte waehlen Sie ein Betriebssystem zur Installation aus
item ubuntu Ubuntu installieren
item fedora Fedora installieren
item --gap
item back Zurueck zum Hauptmenue
choose --timeout 20000 --default back target && goto ${target} || goto menu
:ubuntu
set ubuntu http://archive.ubuntu.com/ubuntu/dists/trusty/main/installer-i386/current/images/netboot/ubuntu-installer/i386
initrd ${ubuntu}/initrd.gz
kernel ${ubuntu}/linux tasks=standard vga=788 -- quiet
boot
:fedora
set fedora http://dl.fedoraproject.org/pub/fedora/linux/releases/20/Fedora/i386/os
initrd ${fedora}/images/pxeboot/initrd.img
kernel ${fedora}/images/pxeboot/vmlinuz vga=788 repo=${fedora}
boot
:back
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment