Advertisement
Guest User

grub

a guest
Nov 21st, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. root  /  #  cat /etc/default/grub
  2. GRUB_DEFAULT=saved
  3. GRUB_TIMEOUT=0
  4. GRUB_DISTRIBUTOR='Manjaro'
  5. #GRUB_CMDLINE_LINUX_DEFAULT="quiet textresume=UUID=3924175d-e802-4692-a577-bf1acc17aa7d"
  6. #GRUB_CMDLINE_LINUX_DEFAULT="resume=/dev/sda3"
  7. GRUB_CMDLINE_LINUX="acpi_enforce_resources=lax acpi_osi=Linux acpi=force nmi_watchdog=0"
  8.  
  9.  
  10. # If you want to enable the save default function, uncomment the following
  11. # line, and set GRUB_DEFAULT to saved.
  12. GRUB_SAVEDEFAULT=true
  13.  
  14. # Preload both GPT and MBR modules so that they are not missed
  15. GRUB_PRELOAD_MODULES="part_gpt part_msdos"
  16.  
  17. # Uncomment to enable Hidden Menu, and optionally hide the timeout count
  18. #GRUB_HIDDEN_TIMEOUT=5
  19. #GRUB_HIDDEN_TIMEOUT_QUIET=true
  20.  
  21. # Uncomment to use basic console
  22. GRUB_TERMINAL_INPUT=console
  23.  
  24. # Uncomment to disable graphical terminal
  25. #GRUB_TERMINAL_OUTPUT=console
  26.  
  27. # The resolution used on graphical terminal
  28. # note that you can use only modes which your graphic card supports via VBE
  29. # you can see them in real GRUB with the command `vbeinfo'
  30. GRUB_GFXMODE=auto
  31.  
  32. # Uncomment to allow the kernel use the same resolution used by grub
  33. GRUB_GFXPAYLOAD_LINUX=keep
  34.  
  35. # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
  36. # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
  37. #GRUB_DISABLE_LINUX_UUID=true
  38.  
  39. # Uncomment to disable generation of recovery mode menu entries
  40. GRUB_DISABLE_RECOVERY=true
  41.  
  42. # Uncomment and set to the desired menu colors. Used by normal and wallpaper
  43. # modes only. Entries specified as foreground/background.
  44. GRUB_COLOR_NORMAL="light-gray/black"
  45. GRUB_COLOR_HIGHLIGHT="green/black"
  46.  
  47. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  48. GRUB_BACKGROUND="/usr/share/grub/background.png"
  49. #GRUB_THEME="/path/to/gfxtheme"
  50.  
  51. # Uncomment to get a beep at GRUB start
  52. #GRUB_INIT_TUNE="480 440 1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement