Advertisement
Guest User

Untitled

a guest
Sep 9th, 2023
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. > cat /etc/default/grub
  2.  
  3. # If you change this file, run 'update-grub' afterwards to update
  4. # /boot/grub/grub.cfg.
  5. # For full documentation of the options in this file, see:
  6. # info -f grub -n 'Simple configuration'
  7.  
  8. GRUB_DEFAULT=0
  9. GRUB_TIMEOUT=30
  10. GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
  11. GRUB_CMDLINE_LINUX_DEFAULT="quiet"
  12. GRUB_CMDLINE_LINUX=""
  13.  
  14. # If your computer has multiple operating systems installed, then you
  15. # probably want to run os-prober. However, if your computer is a host
  16. # for guest OSes installed via LVM or raw disk devices, running
  17. # os-prober can cause damage to those guest OSes as it mounts
  18. # filesystems to look for things.
  19. GRUB_DISABLE_OS_PROBER=false
  20.  
  21. # Uncomment to enable BadRAM filtering, modify to suit your needs
  22. # This works with Linux (no patch required) and with any kernel that obtains
  23. # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
  24. #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
  25.  
  26. # Uncomment to disable graphical terminal
  27. #GRUB_TERMINAL=console
  28.  
  29. # The resolution used on graphical terminal
  30. # note that you can use only modes which your graphic card supports via VBE
  31. # you can see them in real GRUB with the command `vbeinfo'
  32. #GRUB_GFXMODE=640x480
  33.  
  34. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
  35. #GRUB_DISABLE_LINUX_UUID=true
  36.  
  37. # Uncomment to disable generation of recovery mode menu entries
  38. #GRUB_DISABLE_RECOVERY="true"
  39.  
  40. # Uncomment to get a beep at grub start
  41. #GRUB_INIT_TUNE="480 440 1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement