Guest User

/etc/default/grub

a guest
Apr 8th, 2021
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. # GRUB boot loader configuration
  2.  
  3. GRUB_DISABLE_SUBMENU=y
  4. GRUB_DEFAULT=saved
  5. GRUB_SAVEDEFAULT=true
  6. GRUB_TIMEOUT=5
  7. GRUB_DISTRIBUTOR="Arch"
  8. GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet"
  9. GRUB_CMDLINE_LINUX="resume=/dev/nvme0n1p2 random.trust_cpu=on nvidia-drm.modeset=1"
  10.  
  11. # Preload both GPT and MBR modules so that they are not missed
  12. GRUB_PRELOAD_MODULES="part_gpt part_msdos"
  13.  
  14. # Uncomment to enable booting from LUKS encrypted devices
  15. #GRUB_ENABLE_CRYPTODISK=y
  16.  
  17. # Set to 'countdown' or 'hidden' to change timeout behavior,
  18. # press ESC key to display menu.
  19. GRUB_TIMEOUT_STYLE=menu
  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-blue/black"
  45. #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
  46.  
  47. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  48. #GRUB_BACKGROUND="/path/to/wallpaper"
  49. #GRUB_THEME="/path/to/gfxtheme"
  50.  
  51. # Uncomment to get a beep at GRUB start
  52. #GRUB_INIT_TUNE="480 440 1"
  53.  
  54. # Uncomment to make GRUB remember the last selection. This requires
  55. # setting 'GRUB_DEFAULT=saved' above.
  56. #GRUB_SAVEDEFAULT=true
  57.  
  58. # Uncomment to disable submenus in boot menu
  59. #GRUB_DISABLE_SUBMENU=y
  60.  
Add Comment
Please, Sign In to add comment