These are the instructions to make Grub2 load Ubuntu directly.
-
Open Grub2 Default Settings file:
sudo gedit /etc/default/grub -
Changing the Grub2 Settings file
- Make sure
GRUB_TIMEOUTis set to0 - Make sure to add
GRUB_DISABLE_OS_PROBER=trueline somewhere. - Make sure to add
GRUB_RECORDFAIL_TIMEOUT=$GRUB_TIMEOUTline somewhere near as well.
-
Summary: These are the additions and changes to the file:
/etc/default/grubGRUB_TIMEOUT=0 GRUB_DISABLE_OS_PROBER=true GRUB_RECORDFAIL_TIMEOUT=$GRUB_TIMEOUT
- Make sure
-
Generate a new Grub2 Boot file:
sudo update-grub
More information:
https://askubuntu.com/a/698230
https://help.ubuntu.com/community/Grub2/Setup