Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. GRUB_DEFAULT=0
  2. GRUB_TIMEOUT=5
  3. GRUB_DISTRIBUTOR="Arch"
  4. GRUB_CMDLINE_LINUX_DEFAULT="resume=/dev/mapper/vg-swap quiet"
  5. GRUB_CMDLINE_LINUX="cryptdevice=/dev/sda1:cryptolvm"
  6. GRUB_ENABLE_CRYPTODISK=y
  7. GRUB_FORCE_HIDDEN_MENU="true"
  8.  
  9. # Preload both GPT and MBR modules so that they are not missed
  10. GRUB_PRELOAD_MODULES="part_gpt part_msdos cryptodisk luks lvm"
  11.  
  12. # Uncomment to enable Hidden Menu, and optionally hide the timeout count
  13. #GRUB_HIDDEN_TIMEOUT=5
  14. #GRUB_HIDDEN_TIMEOUT_QUIET=true
  15.  
  16. # Uncomment to use basic console
  17. GRUB_TERMINAL_INPUT=console
  18.  
  19. # Uncomment to disable graphical terminal
  20. #GRUB_TERMINAL_OUTPUT=console
  21.  
  22. # The resolution used on graphical terminal
  23. # note that you can use only modes which your graphic card supports via VBE
  24. # you can see them in real GRUB with the command `vbeinfo'
  25. GRUB_GFXMODE=auto
  26.  
  27. # Uncomment to allow the kernel use the same resolution used by grub
  28. GRUB_GFXPAYLOAD_LINUX=keep
  29.  
  30. # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
  31. # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
  32. #GRUB_DISABLE_LINUX_UUID=true
  33.  
  34. # Uncomment to disable generation of recovery mode menu entries
  35. GRUB_DISABLE_RECOVERY=true
  36.  
  37. # Uncomment and set to the desired menu colors. Used by normal and wallpaper
  38. # modes only. Entries specified as foreground/background.
  39. #GRUB_COLOR_NORMAL="light-blue/black"
  40. #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
  41.  
  42. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  43. #GRUB_BACKGROUND="/path/to/wallpaper"
  44. #GRUB_THEME="/path/to/gfxtheme"
  45.  
  46. # Uncomment to get a beep at GRUB start
  47. #GRUB_INIT_TUNE="480 440 1"
  48.  
  49. #GRUB_SAVEDEFAULT="true"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement