Created
April 9, 2020 18:52
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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