0

How do I remove this GRUB os selection ?

enter image description here

I'm on Ubuntu 20.04 LTS

yaa__
  • 645
  • 2
  • 9
  • 22

1 Answers1

0

You may edit the grub configuration file using the command

 sudo gedit /etc/default/grub

and change the line GRUB_TIMEOUT = 10 to GRUB_TIMEOUT=0. Also add the lines GRUB_DISABLE_OS_PROBER=true GRUB_TIMEOUT_STYLE=hidden

Save the file. Update the Grub using the command

sudo update-grub

and reboot the machine.

drpjkurian
  • 250
  • 1
  • 8