Advertisement
Guest User

Untitled

a guest
Oct 13th, 2023
100
0
168 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. # Copyright 1999-2020 Gentoo Authors
  2. # Distributed under the terms of the GNU General Public License v2
  3. #
  4. # To populate all changes in this file you need to regenerate your
  5. # grub configuration file afterwards:
  6. # 'grub-mkconfig -o /boot/grub/grub.cfg'
  7. #
  8. # See the grub info page for documentation on possible variables and
  9. # their associated values.
  10.  
  11. GRUB_DISTRIBUTOR="Gentoo"
  12.  
  13. # Default menu entry
  14. #GRUB_DEFAULT=0
  15.  
  16. # Boot the default entry this many seconds after the menu is displayed
  17. #GRUB_TIMEOUT=5
  18. #GRUB_TIMEOUT_STYLE=menu
  19.  
  20. # Append parameters to the linux kernel command line
  21. #GRUB_CMDLINE_LINUX=""
  22. #
  23. # Examples:
  24. #
  25. # Boot with network interface renaming disabled
  26. # GRUB_CMDLINE_LINUX="net.ifnames=0"
  27. #
  28. # Boot with systemd instead of sysvinit (openrc)
  29. # GRUB_CMDLINE_LINUX="init=/usr/lib/systemd/systemd"
  30.  
  31. # Append parameters to the linux kernel command line for non-recovery entries
  32. #GRUB_CMDLINE_LINUX_DEFAULT=""
  33.  
  34. # Uncomment to disable graphical terminal (grub-pc only)
  35. #GRUB_TERMINAL=console
  36.  
  37. # The resolution used on graphical terminal.
  38. # Note that you can use only modes which your graphic card supports via VBE.
  39. # You can see them in real GRUB with the command `vbeinfo'.
  40. #GRUB_GFXMODE=640x480
  41.  
  42. # Set to 'text' to force the Linux kernel to boot in normal text
  43. # mode, 'keep' to preserve the graphics mode set using
  44. # 'GRUB_GFXMODE', 'WIDTHxHEIGHT'['xDEPTH'] to set a particular
  45. # graphics mode, or a sequence of these separated by commas or
  46. # semicolons to try several modes in sequence.
  47. GRUB_GFXPAYLOAD_LINUX=text
  48.  
  49. # Path to theme spec txt file.
  50. # The starfield is by default provided with use truetype.
  51. # NOTE: when enabling custom theme, ensure you have required font/etc.
  52. #GRUB_THEME="/boot/grub/themes/starfield/theme.txt"
  53.  
  54. # Background image used on graphical terminal.
  55. # Can be in various bitmap formats.
  56. #GRUB_BACKGROUND="/boot/grub/mybackground.png"
  57.  
  58. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to kernel
  59. #GRUB_DISABLE_LINUX_UUID=true
  60.  
  61. # Comment if you don't want GRUB to pass "root=PARTUUID=xxx" parameter to kernel
  62. GRUB_DISABLE_LINUX_PARTUUID=false
  63.  
  64. # Uncomment to disable generation of recovery mode menu entries
  65. #GRUB_DISABLE_RECOVERY=true
  66.  
  67. # Uncomment to disable generation of the submenu and put all choices on
  68. # the top-level menu.
  69. # Besides the visual affect of no sub menu, this makes navigation of the
  70. # menu easier for a user who can't see the screen.
  71. #GRUB_DISABLE_SUBMENU=y
  72.  
  73. # Uncomment to play a tone when the main menu is displayed.
  74. # This is useful, for example, to allow users who can't see the screen
  75. # to know when they can make a choice on the menu.
  76. #GRUB_INIT_TUNE="60 800 1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement