Advertisement
Guest User

geänderte grub.cfg

a guest
Mar 3rd, 2013
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. # If you change this file, run 'update-grub' afterwards to update
  2. # /boot/grub/grub.cfg.
  3.  
  4. GRUB_DEFAULT=0
  5. GRUB_TIMEOUT=1
  6. GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
  7. GRUB_CMDLINE_LINUX="console=tty0 console=ttyS0,115200n8"
  8.  
  9. # Uncomment to disable graphical terminal (grub-pc only)
  10. GRUB_TERMINAL=serial
  11. GRUB_SERIAL_COMMAND="serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1"
  12.  
  13. # The resolution used on graphical terminal
  14. # note that you can use only modes which your graphic card supports via VBE
  15. # you can see them in real GRUB with the command `vbeinfo'
  16. #GRUB_GFXMODE=640x480
  17.  
  18. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
  19. #GRUB_DISABLE_LINUX_UUID=true
  20.  
  21. if loadfont /boot/grub/font.pf2 ; then
  22. set gfxmode=auto
  23. insmod efi_gop
  24. insmod efi_uga
  25. insmod gfxterm
  26. terminal_output gfxterm
  27. fi
  28.  
  29. set menu_color_normal=white/black
  30. set menu_color_highlight=black/light-gray
  31.  
  32. menuentry "Install Ubuntu Server" {
  33. set gfxpayload=keep
  34. linux /install/vmlinuz file=/cdrom/preseed/ubuntu-server.seed quiet console=ttyS0,115200n8 --
  35. initrd /install/initrd.gz
  36. }
  37. menuentry "Install in expert mode" {
  38. set gfxpayload=keep
  39. linux /install/vmlinuz file=/cdrom/preseed/ubuntu-server.seed priority=low --
  40. initrd /install/initrd.gz
  41. }
  42. menuentry "Multiple server install with MAAS" {
  43. set gfxpayload=keep
  44. linux /install/vmlinuz modules=maas-enlist-udeb vga=788 initrd=/install/initrd.gz quiet --
  45. initrd /install/initrd.gz
  46. }
  47. menuentry "Check disc for defects" {
  48. set gfxpayload=keep
  49. linux /install/vmlinuz MENU=/bin/cdrom-checker-menu quiet --
  50. initrd /install/initrd.gz
  51. }
  52. menuentry "Rescue a broken system" {
  53. set gfxpayload=keep
  54. linux /install/vmlinuz rescue/enable=true --
  55. initrd /install/initrd.gz
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement