Minty95

Grub endeavour

Jan 20th, 2023
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. # GRUB boot loader configuration
  2.  
  3. GRUB_DISABLE_OS_PROBER="false"
  4. GRUB_DEFAULT="0"
  5. GRUB_TIMEOUT="5"
  6. GRUB_DISTRIBUTOR="EndeavourOS"
  7. GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 nowatchdog"
  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 `vbeinfo'
  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.  
  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.  
  57. # Uncomment to disable submenus in boot menu
  58. #GRUB_DISABLE_SUBMENU="y"
  59. GRUB_DISABLE_SUBMENU="y"
  60.  
  61. # To enable usage of os-prober, set GRUB_DISABLE_OS_PROBER to 'false'.
  62. # Note: enabling os-prober creates a potential security risk!
  63. # More info: https://www.gnu.org/software/grub/manual/grub/grub.html
  64. #GRUB_DISABLE_OS_PROBER="false"
  65.  
Add Comment
Please, Sign In to add comment