Advertisement
Guest User

/etc/default/grub

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