Skip to content

Instantly share code, notes, and snippets.

@tai271828
Created April 9, 2020 18:52
Show Gist options
  • Save tai271828/092c06caa81388d1f792f4473ee2aec7 to your computer and use it in GitHub Desktop.
Save tai271828/092c06caa81388d1f792f4473ee2aec7 to your computer and use it in GitHub Desktop.
A grub menu to boot Ubuntu Focal arm server version beta image via netboot
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
clear
fi
insmod gzio
set timeout=5
menuentry "Install Ubuntu Server (Focal Beta) (Pull the iso from web)" {
set gfxpayload=keep
linux /casper/vmlinuz url=http://cdimage.ubuntu.com/ubuntu/releases/20.04/beta/ubuntu-20.04-beta-live-server-arm64.iso only-ubiquity ip=dhcp ---
initrd /casper/initrd
}
menuentry "Install Ubuntu Server (Focal Beta) (Pull the iso from lab apache)" {
set gfxpayload=keep
linux /casper/vmlinuz url=http://<your Apache IP>/ubuntu-20.04-beta-live-server-arm64.iso only-ubiquity ip=dhcp ---
initrd /casper/initrd
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment