grub 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. GRUB_DEFAULT=0
  2. GRUB_TIMEOUT=10
  3. GRUB_DISTRIBUTOR="Milis"
  4. GRUB_CMDLINE_LINUX_DEFAULT="quiet"
  5. GRUB_CMDLINE_LINUX="init=/usr/bin/init"
  6. # Preload both GPT and MBR modules so that they are not missed
  7. GRUB_PRELOAD_MODULES="part_gpt part_msdos"
  8. # Uncomment to enable Hidden Menu, and optionally hide the timeout count
  9. #GRUB_HIDDEN_TIMEOUT=5
  10. #GRUB_HIDDEN_TIMEOUT_QUIET=true
  11. # Uncomment to use basic console
  12. GRUB_TERMINAL_INPUT=console
  13. # Uncomment to disable graphical terminal
  14. #GRUB_TERMINAL_OUTPUT=console
  15. # The resolution used on graphical terminal
  16. # note that you can use only modes which your graphic card supports via VBE
  17. # you can see them in real GRUB with the command `vbeinfo'
  18. GRUB_GFXMODE=auto
  19. # Uncomment to allow the kernel use the same resolution used by grub
  20. GRUB_GFXPAYLOAD_LINUX=keep
  21. # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
  22. # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
  23. #GRUB_DISABLE_LINUX_UUID=true
  24. # Uncomment to disable generation of recovery mode menu entries
  25. GRUB_DISABLE_RECOVERY=true
  26. # Uncomment and set to the desired menu colors. Used by normal and wallpaper
  27. # modes only. Entries specified as foreground/background.
  28. #GRUB_COLOR_NORMAL="light-blue/black"
  29. #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
  30. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  31. #GRUB_BACKGROUND="/path/to/wallpaper"
  32. #GRUB_THEME="/path/to/gfxtheme"
  33. # Uncomment to get a beep at GRUB start
  34. #GRUB_INIT_TUNE="480 440 1"
  35. #GRUB_SAVEDEFAULT="true"