Advertisement
savoxis

Untitled

Feb 6th, 2014
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.64 KB | None | 0 0
  1. [savoxis@TheCakeIsALie ~]$ sudo cat /etc/default/grub
  2. GRUB_DEFAULT="0"
  3. GRUB_TIMEOUT="1"
  4. GRUB_DISTRIBUTOR="Arch"
  5. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
  6. GRUB_CMDLINE_LINUX=""
  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="1600x900x32"
  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. export GRUB_COLOR_NORMAL="light-blue/black"
  39. export GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
  40.  
  41. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  42. GRUB_THEME="/usr/share/grub/themes/arch-suse/theme.txt"
  43.  
  44. # Uncomment to get a beep at GRUB start
  45. #GRUB_INIT_TUNE="480 440 1"
  46.  
  47. #GRUB_SAVEDEFAULT="true"
  48.  
  49.  
  50. GRUB_FONT="/boot/grub/unicode.pf2"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement