Upgraded my Ubuntu (with dual boot Windows) to 18.04 . After restart I got "System BootOrder not found. Initializing defaults." . Changing the BIOS bootorder to Windows as 1st works, of course, but i want my dual boot option back. I tried the same solution as an Acer user had ("I switched "secure boot"on"). But I don't get the option of "Select an UEFI file as trusted for executing" . Where can I activate those UEFI files, in the BIOS???
Asked
Active
Viewed 6,000 times
1 Answers
0
If you didn't change the defaults, You are using Grub2 as your bootloader. in this case, please use this command to reconfigure your grub configs.
I assume that os-prober
and efibootmgr
are installed by default, so:
grub-mkconfig -o /boot/grub/grub.cfg
It will create new grub.cfg
file. now reboot your system.
Let me know if it solve your problem or not.

Hamid Yousefi
- 151
grub-mkconfig
for a broken grub on a system, you must firstmount
necessary partitions likeEFI
,boot
partition (if it is separated) androot
to the booted system (somewhere like your current/mnt
). then usechroot
to enter into/mnt
that you mounted the broken OS. then you can simply rungrub-mkconfig
as a root as I shared before. – Hamid Yousefi Sep 19 '18 at 09:01