You are not logged in.
I have a Yoga 7 2-in-1 16IML9 which was dual booting Win 11 and BL Carbon. I applied a Windows update which removed the grub menu. Now, when I boot I go right into Windows and never see the grub menu.
Running
lsblk from a live USB boot I can see the all Windows and BL partitions.
How do I reinstate the grub menu and dual boot?
Offline
^Start with the BL-Carbon Live System (Stick, CD)
Open a terminal and chroot into the system:
lsblk -fpMount the appropriate partition(s):
sudo -sthe root system / of carbon
mount /dev/sdXY /mntoptional if available
mount /dev/sdXY /mnt/bootor
mount /dev/sdXY /mnt/boot/efifor i in /proc /sys /dev /dev/pts; do mount --bind $i /mnt$i; done
chroot /mnt /bin/bashgrub-install /dev/sdXat efi
grub-installupdate-grub
exit
rebootHave fun! ![]()
Offline