grub.default 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # GRUB boot loader configuration
  2. GRUB_DEFAULT=0
  3. GRUB_TIMEOUT=5
  4. GRUB_DISTRIBUTOR="Parabola"
  5. GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet"
  6. GRUB_CMDLINE_LINUX=""
  7. # Preload both GPT and MBR modules so that they are not missed
  8. GRUB_PRELOAD_MODULES="part_gpt part_msdos"
  9. # Uncomment to enable booting from LUKS encrypted devices
  10. #GRUB_ENABLE_CRYPTODISK=y
  11. # Set to 'countdown' or 'hidden' to change timeout behavior,
  12. # press ESC key to display menu.
  13. GRUB_TIMEOUT_STYLE=menu
  14. # Uncomment to use basic console
  15. GRUB_TERMINAL_INPUT=console
  16. # Uncomment to disable graphical terminal
  17. #GRUB_TERMINAL_OUTPUT=console
  18. # The resolution used on graphical terminal
  19. # note that you can use only modes which your graphic card supports via VBE
  20. # you can see them in real GRUB with the command `vbeinfo'
  21. GRUB_GFXMODE=auto
  22. # Uncomment to allow the kernel use the same resolution used by grub
  23. GRUB_GFXPAYLOAD_LINUX=keep
  24. # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
  25. # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
  26. #GRUB_DISABLE_LINUX_UUID=true
  27. # Uncomment to disable generation of recovery mode menu entries
  28. GRUB_DISABLE_RECOVERY=true
  29. # Uncomment and set to the desired menu colors. Used by normal and wallpaper
  30. # modes only. Entries specified as foreground/background.
  31. GRUB_COLOR_NORMAL="magenta/black"
  32. GRUB_COLOR_HIGHLIGHT="white/magenta"
  33. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  34. #GRUB_BACKGROUND="/path/to/wallpaper"
  35. #GRUB_THEME="/path/to/gfxtheme"
  36. # Uncomment to get a beep at GRUB start
  37. #GRUB_INIT_TUNE="480 440 1"
  38. # Uncomment to make GRUB remember the last selection. This requires to
  39. # set 'GRUB_DEFAULT=saved' above.
  40. #GRUB_SAVEDEFAULT="true"
  41. # Disable advanced submenu
  42. GRUB_DISABLE_SUBMENU="y"