Last active
February 19, 2016 02:39
-
-
Save Hikari9/bd9678fd1b713554ce80 to your computer and use it in GitHub Desktop.
Grub config backup https://usbubuntu.wordpress.com/make-it-persistent/
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
| 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 | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://bugs.launchpad.net/ubuntu/+source/casper/+bug/1241589