home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Linux / Ubuntu_64-bit / ubuntu-11.04-desktop-amd64.iso / boot / grub / grub.cfg < prev    next >
Text File  |  2011-04-27  |  719b  |  28 lines

  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-gray
  12.  
  13. menuentry "Try Ubuntu without installing" {
  14.     set gfxpayload=keep
  15.     linux    /casper/vmlinuz  file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash --
  16.     initrd    /casper/initrd.lz
  17. }
  18. menuentry "Install Ubuntu" {
  19.     set gfxpayload=keep
  20.     linux    /casper/vmlinuz  file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash --
  21.     initrd    /casper/initrd.lz
  22. }
  23. menuentry "Check disc for defects" {
  24.     set gfxpayload=keep
  25.     linux    /casper/vmlinuz  boot=casper integrity-check quiet splash --
  26.     initrd    /casper/initrd.lz
  27. }
  28.