Advertisement
Guest User

grub

a guest
Dec 30th, 2023
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. # GRUB boot loader configuration
  2.  
  3. GRUB_DEFAULT=0
  4. GRUB_TIMEOUT=5
  5. GRUB_DISTRIBUTOR="Arch"
  6. #GRUB_CMDLINE_LINUX_DEFAULT="loglevel=5 nowatchdog resume=a370ea4d-4fda-4836-a76d-c238badaeea3"
  7. GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet splash resume=a370ea4d-4fda-4836-a76d-c238badaeea3"
  8. GRUB_CMDLINE_LINUX=""
  9.  
  10. # Preload both GPT and MBR modules so that they are not missed
  11. GRUB_PRELOAD_MODULES="part_gpt part_msdos"
  12.  
  13. # Uncomment to enable booting from LUKS encrypted devices
  14. #GRUB_ENABLE_CRYPTODISK=y
  15.  
  16. # Set to 'countdown' or 'hidden' to change timeout behavior,
  17. # press ESC key to display menu.
  18. GRUB_TIMEOUT_STYLE=menu
  19.  
  20. # Uncomment to use basic console
  21. GRUB_TERMINAL_INPUT=console
  22.  
  23. # Uncomment to disable graphical terminal
  24. #GRUB_TERMINAL_OUTPUT=console
  25.  
  26. # The resolution used on graphical terminal
  27. # note that you can use only modes which your graphic card supports via VBE
  28. # you can see them in real GRUB with the command `videoinfo'
  29. GRUB_GFXMODE=auto
  30.  
  31. # Uncomment to allow the kernel use the same resolution used by grub
  32. GRUB_GFXPAYLOAD_LINUX=keep
  33.  
  34. # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
  35. # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
  36. #GRUB_DISABLE_LINUX_UUID=true
  37.  
  38. # Uncomment to disable generation of recovery mode menu entries
  39. GRUB_DISABLE_RECOVERY=true
  40.  
  41. # Uncomment and set to the desired menu colors. Used by normal and wallpaper
  42. # modes only. Entries specified as foreground/background.
  43. #GRUB_COLOR_NORMAL="light-blue/black"
  44. #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
  45.  
  46. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  47. #GRUB_BACKGROUND="/path/to/wallpaper"
  48. #GRUB_THEME="/path/to/gfxtheme"
  49.  
  50. # Uncomment to get a beep at GRUB start
  51. #GRUB_INIT_TUNE="480 440 1"
  52.  
  53. # Uncomment to make GRUB remember the last selection. This requires
  54. # setting 'GRUB_DEFAULT=saved' above.
  55. GRUB_SAVEDEFAULT=true
  56. GRUB_DEFAULT=saved
  57.  
  58. # Uncomment to disable submenus in boot menu
  59. #GRUB_DISABLE_SUBMENU=y
  60.  
  61. # Probing for other operating systems is disabled for security reasons. Read
  62. # documentation on GRUB_DISABLE_OS_PROBER, if still want to enable this
  63. # functionality install os-prober and uncomment to detect and include other
  64. # operating systems.
  65. GRUB_DISABLE_OS_PROBER=false
  66.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement