I'm trying to better understand dual boot but I have a problem.
I have Windows 10 and Ubuntu 20.04.1. installed on the same PC (dual boot)
I want to set Ubuntu as default.
The boot default seems to be Windows but the problem is that I've tried to change the grub default to GRUB_DEFAULT="Ubuntu"
from my Grub customizer but it doesn't work.
Any idea?
grub-set-default
command to help set the default you want it to boot to. – Terrance Jan 26 '21 at 19:15GRUB_DEFAULT=0
in /etc/default/grub. If you are looking at ubuntu entry in UEFI boot menu, check thissudo efibootmgr -v
and you can change boot order in UEFI with efibootmgr for many systems, HP (maybe some others) only allow changes from within UEFI. Seeman efibootmgr
& http://askubuntu.com/questions/485261/change-boot-order-using-efibootmgr – oldfred Jan 26 '21 at 19:21