Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. cat /etc/default/grub
  2. # Copyright 1999-2015 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  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 x86_64 -----"
  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="i8042.nopnp"
  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="i8042.reset i8042.nomux i8042.nopnp i8042.noloop"
  34. ##
  35. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash i915.enable_guc_loading=2 i915.enable_guc_submission=2 resume=PARTUUID=963a12e3-6d40-4d7c-bd27-7b9f7b12102d i915.enable_psr=1 intel_pstate=skylake_hwp"
  36.  
  37. # Uncomment to disable graphical terminal (grub-pc only)
  38. #GRUB_TERMINAL=console
  39.  
  40. # The resolution used on graphical terminal.
  41. # Note that you can use only modes which your graphic card supports via VBE.
  42. # You can see them in real GRUB with the command `vbeinfo'.
  43. GRUB_GFXMODE=1920x1080x32
  44.  
  45. # Set to 'text' to force the Linux kernel to boot in normal text
  46. # mode, 'keep' to preserve the graphics mode set using
  47. # 'GRUB_GFXMODE', 'WIDTHxHEIGHT'['xDEPTH'] to set a particular
  48. # graphics mode, or a sequence of these separated by commas or
  49. # semicolons to try several modes in sequence.
  50.  
  51. GRUB_GFXPAYLOAD_LINUX=keep
  52.  
  53. # Path to theme spec txt file.
  54. # The starfield is by default provided with use truetype.
  55. # NOTE: when enabling custom theme, ensure you have required font/etc.
  56. #GRUB_THEME="/boot/grub/themes/starfield/theme.txt"
  57.  
  58. # Background image used on graphical terminal.
  59. # Can be in various bitmap formats.
  60. #GRUB_BACKGROUND="/boot/grub/mybackground.png"
  61.  
  62. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to kernel
  63. #GRUB_DISABLE_LINUX_UUID=true
  64.  
  65. # Uncomment to disable generation of recovery mode menu entries
  66. #GRUB_DISABLE_RECOVERY=true
  67.  
  68. # Uncomment to disable generation of the submenu and put all choices on
  69. # the top-level menu.
  70. # Besides the visual affect of no sub menu, this makes navigation of the
  71. # menu easier for a user who can't see the screen.
  72. #GRUB_DISABLE_SUBMENU=y
  73.  
  74. # Uncomment to play a tone when the main menu is displayed.
  75. # This is useful, for example, to allow users who can't see the screen
  76. # to know when they can make a choice on the menu.
  77. #GRUB_INIT_TUNE="60 800 1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement