Advertisement
Guest User

Untitled

a guest
May 14th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1.  
  2. if loadfont /boot/grub/font.pf2 ; then
  3. set gfxmode=auto
  4. insmod efi_gop
  5. insmod efi_uga
  6. insmod gfxterm
  7. terminal_output gfxterm
  8. fi
  9.  
  10. set menu_color_normal=white/black
  11. set menu_color_highlight=black/light-blue
  12.  
  13. menuentry "Install Custom Ubuntu" {
  14. linux /casper/vmlinuz.efi file=/cdrom/preseed/custom.seed zboot=casper only-ubiquity quiet splash --
  15. initrd /casper/initrd.lz
  16. }
  17. menuentry "Try Ubuntu without installing" {
  18. set gfxpayload=keep
  19. linux /casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash --
  20. initrd /casper/initrd.lz
  21. }
  22. menuentry "Install Ubuntu" {
  23. set gfxpayload=keep
  24. linux /casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed zboot=casper only-ubiquity quiet splash --
  25. initrd /casper/initrd.lz
  26. }
  27. menuentry "Check disc for defects" {
  28. set gfxpayload=keep
  29. linux /casper/vmlinuz.efi boot=casper integrity-check quiet splash --
  30. initrd /casper/initrd.lz
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement