Advertisement
AmarpreetMinhas

Grub2 /etc/grub/default

Jan 29th, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. # Copyright 1999-2013 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. # $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/files/grub.default-2,v 1.4 2013/09/21 18:10:55 floppym Exp $
  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. GRUB_DEFAULT=0
  15. GRUB_HIDDEN_TIMEOUT=0
  16. GRUB_HIDDEN_TIMEOUT_QUIET=true
  17. GRUB_TIMEOUT=3
  18.  
  19. GRUB_PRELOAD_MODULES=lvm
  20. GRUB_CRYPTODISK_ENABLE=y
  21.  
  22. # Append parameters to the linux kernel command line
  23. GRUB_CMDLINE_LINUX="real_init=/usr/lib/systemd/systemd quiet real_root=/dev/mapper/rootfs-root crypt_root=/dev/sda3 dolvm"
  24.  
  25. GRUB_DEVICE="/dev/sda1"
  26.  
  27. # Append parameters to the linux kernel command line for non-recovery entries
  28. #GRUB_CMDLINE_LINUX_DEFAULT=""
  29.  
  30. # Uncomment to disable graphical terminal (grub-pc only)
  31. GRUB_TERMINAL=console
  32.  
  33. # The resolution used on graphical terminal.
  34. # Note that you can use only modes which your graphic card supports via VBE.
  35. # You can see them in real GRUB with the command `vbeinfo'.
  36. # GRUB_GFXMODE=640x480
  37.  
  38. # Path to theme spec txt file.
  39. # The starfield is by default provided with use truetype.
  40. # NOTE: when enabling custom theme, ensure you have required font/etc.
  41. #GRUB_THEME="/boot/grub/themes/starfield/theme.txt"
  42.  
  43. # Background image used on graphical terminal.
  44. # Can be in various bitmap formats.
  45. #GRUB_BACKGROUND="/boot/grub/mybackground.png"
  46.  
  47. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to kernel
  48. #GRUB_DISABLE_LINUX_UUID=true
  49.  
  50. # Uncomment to disable generation of recovery mode menu entries
  51. #GRUB_DISABLE_RECOVERY=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement