I have a HP 15s-du1034TU laptop which came with windows 10 preinstalled. I installed Ubuntu 20.04, the latest LTS version, and when I restart the grub is not coming and the PC straightaway boots into windows.
I disabled the Fast boot and the secure boot options. Also tried the following command in the command prompt of windows 10:
bcdedit /set {bootmgr} path \EFI\ubuntu\grubx64.efi
But none of the above worked. I do not have a legacy option in the BIOS. However I could disable secure boot as mentioned previously. In bios Boot manager always shows windows as the first option and Ubuntu is always listed as the second options, no matter whatever I do.
Is it that, the latest laptops do not allow the dual boot option? Can someone please help me out?
grubx64.efi
to first listing. See Boot tab. – Parfait Jun 14 '20 at 04:27sudo efibootmgr
and post output into question. – Paul Benson Jun 14 '20 at 06:03sudo efibootmgr
to list boot entries. Generally, in such issue, "Windows Boot Manager" comes first in that list and its ID is "Boot0000". So instead of keeping trying to rewrite the boot manager, try now to make Windows entry inactive with commandsudo efibootmgr -b XXXX -A
where XXXX is the ID numbers displayed earlier. Then you should see the "" (star) beside "Boot0000" disappeared from that list. – Lilly-R B Feb 10 '21 at 19:34