irenicus09

Grub Config [Laptop]

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