grub 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #
  2. # /etc/default/grub - Controls the operation of grub-mkconfig(8).
  3. #
  4. # For more information, type: info grub -n 'simple configuration'
  5. #
  6. # The default menu entry. This may be a number, in which case it
  7. # identifies the Nth entry in the generated menu counted from zero,
  8. # or the title of a menu entry, or the special string 'saved'. Using
  9. # the id may be useful if you want to set a menu entry as the default
  10. # even though there may be a variable number of entries before it
  11. GRUB_DEFAULT=0
  12. # Command-line arguments to add to menu entries for the Linux kernel
  13. #
  14. # Note: The arguments are added to both entries (normal and recovery).
  15. GRUB_CMDLINE_LINUX="printk.time=0 nomodeset"
  16. # If this option is set to 'true', disable the generation of recovery
  17. # mode menu entries.
  18. #GRUB_DISABLE_RECOVERY=true
  19. # Unless 'GRUB_DISABLE_RECOVERY' is set to 'true', two menu entries
  20. # will be generated for each Linux kernel: one default entry and one
  21. # entry for recovery mode. This option lists command-line arguments
  22. # to add only to the default menu entry, after those listed in
  23. # 'GRUB_CMDLINE_LINUX'
  24. #
  25. # Note: The entries are appended to the end of the normal mode only.
  26. GRUB_CMDLINE_LINUX_DEFAULT=""
  27. # Boot the default entry this many seconds after the menu is
  28. # displayed, unless a key is pressed. The default is '5'. Set to
  29. # '0' to boot immediately without displaying the menu, or to '-1' to
  30. # wait indefinitely
  31. GRUB_TIMEOUT=40
  32. # If 'GRUB_TIMEOUT_STYLE' is set to 'countdown' or 'hidden', the
  33. # timeout is instead counted before the menu is displayed
  34. #GRUB_TIMEOUT_STYLE=countdown
  35. # Set by distributors of GRUB to their identifying name. This is
  36. # used to generate more informative menu entry titles
  37. GRUB_DISTRIBUTOR="Dragora"
  38. # Select the terminal output device. You may select multiple devices
  39. # here, separated by spaces.
  40. #
  41. # Valid terminal output names depend on the platform, but may include
  42. # 'console' (native platform console), 'serial' (serial terminal),
  43. # 'serial_<port>' (serial terminal with explicit port selection),
  44. # 'gfxterm' (graphics-mode output), 'vga_text' (VGA text output),
  45. # 'mda_text' (MDA text output), 'morse' (Morse-coding using system
  46. # beeper) or 'spkmodem' (simple data protocol using system speaker).
  47. # The default is to use the platform's native terminal output.
  48. #
  49. # Please check the documentation for setting an output device.
  50. #GRUB_TERMINAL="console"
  51. # Set the resolution used on the 'gfxterm' graphical terminal. Note
  52. # that you can only use modes which your graphics card supports via
  53. # VESA BIOS Extensions (VBE), so for example native LCD panel
  54. # resolutions may not be available. The default is 'auto', which
  55. # tries to select a preferred resolution.
  56. #
  57. # The resolution may be specified as a sequence of one or more modes,
  58. # separated by commas (',') or semicolons (';'); each will be tried in
  59. # turn until one is found. Each mode should be either 'auto',
  60. # 'WIDTHxHEIGHT', or 'WIDTHxHEIGHTxDEPTH'.
  61. #GRUB_GFXMODE=640x480