Advertisement
Guest User

Untitled

a guest
Sep 6th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. # Copyright 1999-2015 Gentoo Foundation
  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. # 'grub2-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. # editiert nach hier: https://forums.fedoraforum.org/showthread.php?t=306271
  12.  
  13.  
  14. GRUB_DISTRIBUTOR="Gentoo"
  15.  
  16. # Default menu entry
  17. #GRUB_DEFAULT=0
  18.  
  19. # Boot the default entry this many seconds after the menu is displayed
  20. #GRUB_TIMEOUT=5
  21. #GRUB_TIMEOUT_STYLE=menu
  22.  
  23. # Append parameters to the linux kernel command line
  24. #GRUB_CMDLINE_LINUX=""
  25. #
  26. # Examples:
  27. #
  28. # Boot with network interface renaming disabled
  29. # GRUB_CMDLINE_LINUX="net.ifnames=0"
  30. #
  31. # Boot with systemd instead of sysvinit (openrc)
  32. # GRUB_CMDLINE_LINUX="init=/usr/lib/systemd/systemd"
  33.  
  34. # Append parameters to the linux kernel command line for non-recovery entries
  35. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
  36.  
  37. # Uncomment to disable graphical terminal (grub-pc only)
  38. #GRUB_TERMINAL=console
  39. GRUB_TERMINAL_OUTPUT="gfxterm"
  40.  
  41. # The resolution used on graphical terminal.
  42. # Note that you can use only modes which your graphic card supports via VBE.
  43. # You can see them in real GRUB with the command `vbeinfo'.
  44. #GRUB_GFXMODE=640x480
  45. GRUB_GFXMODE=2560x1440x32,1600x1200x32,1280x1024x32
  46.  
  47. # Set to 'text' to force the Linux kernel to boot in normal text
  48. # mode, 'keep' to preserve the graphics mode set using
  49. # 'GRUB_GFXMODE', 'WIDTHxHEIGHT'['xDEPTH'] to set a particular
  50. # graphics mode, or a sequence of these separated by commas or
  51. # semicolons to try several modes in sequence.
  52. GRUB_GFXPAYLOAD_LINUX=keep
  53.  
  54. # Path to theme spec txt file.
  55. # The starfield is by default provided with use truetype.
  56. # NOTE: when enabling custom theme, ensure you have required font/etc.
  57. #GRUB_THEME="/boot/grub/themes/starfield/theme.txt"
  58.  
  59. # Background image used on graphical terminal.
  60. # Can be in various bitmap formats.
  61. #GRUB_BACKGROUND="/boot/grub/mybackground.png"
  62.  
  63. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to kernel
  64. #GRUB_DISABLE_LINUX_UUID=true
  65.  
  66. # Uncomment to disable generation of recovery mode menu entries
  67. #GRUB_DISABLE_RECOVERY=true
  68.  
  69. # Uncomment to disable generation of the submenu and put all choices on
  70. # the top-level menu.
  71. # Besides the visual affect of no sub menu, this makes navigation of the
  72. # menu easier for a user who can't see the screen.
  73. #GRUB_DISABLE_SUBMENU=y
  74.  
  75. # Uncomment to play a tone when the main menu is displayed.
  76. # This is useful, for example, to allow users who can't see the screen
  77. # to know when they can make a choice on the menu.
  78. #GRUB_INIT_TUNE="60 800 1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement