Skip to content

Instantly share code, notes, and snippets.

@Hikari9
Last active February 19, 2016 02:39
Show Gist options
  • Select an option

  • Save Hikari9/bd9678fd1b713554ce80 to your computer and use it in GitHub Desktop.

Select an option

Save Hikari9/bd9678fd1b713554ce80 to your computer and use it in GitHub Desktop.
if loadfont /boot/grub/font.pf2 ; then
set gfxmode=auto
insmod efi_gop
insmod efi_uga
insmod gfxterm
terminal_output gfxterm
fi
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
menuentry "Try Ubuntu without installing" {
set gfxpayload=keep
linux /casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash --
initrd /casper/initrd.lz
}
menuentry "Install Ubuntu" {
set gfxpayload=keep
linux /casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash --
initrd /casper/initrd.lz
}
menuentry "OEM install (for manufacturers)" {
set gfxpayload=keep
linux /casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash oem-config/enable=true --
initrd /casper/initrd.lz
}
menuentry "Check disc for defects" {
set gfxpayload=keep
linux /casper/vmlinuz.efi boot=casper integrity-check quiet splash --
initrd /casper/initrd.lz
}
@Hikari9
Copy link
Author

Hikari9 commented Feb 19, 2016

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