Advertisement
postmind24

Ubuntu hide GRUB

Nov 23rd, 2022 (edited)
863
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.53 KB | Software | 0 0
  1. # To hide grub replace the content of "example command" sudo gedit /etc/default/grub
  2. # Btw it is good practice to make backup of original file
  3. # If you change this file, run 'update-grub' afterwards to update
  4.  
  5. #GRUB_DEFAULT="saved"
  6. #GRUB_TIMEOUT_STYLE="hidden"
  7. GRUB_CMDLINE_LINUX=""
  8. GRUB_DEFAULT="0"
  9. GRUB_HIDDEN_TIMEOUT="0"
  10. GRUB_TIMEOUT="0"
  11. GRUB_RECORDFAIL_TIMEOUT="0"
  12. GRUB_DISTRIBUTOR="`lsb_release -i -s 2> /dev/null || echo Debian`"
  13. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
  14. GRUB_CMDLINE_LINUX=""
  15. GRUB_DISABLE_OS_PROBER="true"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement