Skip to content

Instantly share code, notes, and snippets.

@Spaceghost
Created August 4, 2021 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Spaceghost/8d862ef05d939fff595e25c35ab41bd9 to your computer and use it in GitHub Desktop.
Save Spaceghost/8d862ef05d939fff595e25c35ab41bd9 to your computer and use it in GitHub Desktop.
One-shot to netboot.xyz
wget -c "https://boot.netboot.xyz/ipxe/netboot.xyz.lkrn" -O /boot/netboot.xyz.lkrn && \
cat > /etc/grub.d/40_custom <<EOF
#!/bin/sh
exec tail -n +3 \$0
menuentry 'netboot.xyz' {
set root='hd0,msdos1'
linux16 /netboot.xyz.lkrn
}
EOF
update-grub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment