Which it absolutely fucking will, without notice or warning - thank you, Microsoft. 🙄
https://www.youtube.com/watch?v=HPHZ3hSp6mE
- Boot from a USB stick
sudo su -fdisk -land note:- The boot volume name, e.g.
/dev/xxx - The EFI partition name, e.g.
/dev/xxx1 - The Windows partition name, e.g.
/dev/xxx3 - The Linux partition name, e.g.
/dev/xxx5
- The boot volume name, e.g.
mount /dev/xxx5 /mnt(the Linux partition)mount /dev/xxx1 /mnt/boot/efi(the EFI partition)for i in /dev /dev/pts /proc /sys /run; do mount -B $i /mnt$i; donechroot /mntmount -t efivarfs none /sys/firmware/efi/efivarsgrub-install /dev/xxx(the boot volume)update-grub