Advertisement
Guest User

grub conf

a guest
Dec 12th, 2021
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. # GRUB boot loader configuration
  2.  
  3. GRUB_DEFAULT=0
  4. GRUB_TIMEOUT=5
  5. GRUB_DISTRIBUTOR="KISS"
  6. GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet"
  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 booting from LUKS encrypted devices
  12. #GRUB_ENABLE_CRYPTODISK=y
  13.  
  14. # Set to 'countdown' or 'hidden' to change timeout behavior,
  15. # press ESC key to display menu.
  16. #GRUB_TIMEOUT_STYLE=menu
  17.  
  18. # Uncomment to use basic console
  19. #GRUB_TERMINAL_INPUT=console
  20.  
  21. # Uncomment to disable graphical terminal
  22. #GRUB_TERMINAL_OUTPUT=console
  23.  
  24. # The resolution used on graphical terminal
  25. # note that you can use only modes which your graphic card supports via VBE
  26. # you can see them in real GRUB with the command `vbeinfo'
  27. #GRUB_GFXMODE=auto
  28.  
  29. # Uncomment to allow the kernel use the same resolution used by grub
  30. #GRUB_GFXPAYLOAD_LINUX=keep
  31.  
  32. # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
  33. # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
  34. #GRUB_DISABLE_LINUX_UUID=true
  35.  
  36. # Uncomment to disable generation of recovery mode menu entries
  37. #GRUB_DISABLE_RECOVERY=true
  38.  
  39. # Uncomment and set to the desired menu colors. Used by normal and wallpaper
  40. # modes only. Entries specified as foreground/background.
  41. #GRUB_COLOR_NORMAL="light-blue/black"
  42. #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
  43.  
  44. # Uncomment one of them for the gfx desired, a image background or a gfxtheme
  45. #GRUB_BACKGROUND="/path/to/wallpaper"
  46. #GRUB_THEME="/path/to/gfxtheme"
  47.  
  48. # Uncomment to get a beep at GRUB start
  49. #GRUB_INIT_TUNE="480 440 1"
  50.  
  51. # Uncomment to make GRUB remember the last selection. This requires to
  52. # set 'GRUB_DEFAULT=saved' above.
  53. #GRUB_SAVEDEFAULT="true"
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement