Skip to content

Instantly share code, notes, and snippets.

@Bubblemelon
Last active July 23, 2018 17:12
Show Gist options
  • Save Bubblemelon/79d47672ab5ebd2ea55b230978af8746 to your computer and use it in GitHub Desktop.
Save Bubblemelon/79d47672ab5ebd2ea55b230978af8746 to your computer and use it in GitHub Desktop.
ipxe installation of fedora 28
#!ipxe
# Set source URI
set mirror https://sjc.edge.kernel.org/fedora-buffet/fedora/linux/releases/28/Workstation/x86_64/os/
# Detect CPU architecture and calculate repository URI
cpuid --ext 29 && set arch x86_64 || 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
@Bubblemelon
Copy link
Author

Bubblemelon commented Jul 20, 2018

@Bubblemelon
Copy link
Author

#!ipxe

chain -ar https://boot.netboot.xyz

https://help.packet.net/technical/infrastructure/custom-ipxe

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment