As I declare myself as not the highest knowledged Linux user, I turned to find out how to mount that efi or boot/efi partition.
See, @pg-tips , I’m currently booting from Live Fedora USB.
Here I found these instructions to go against this problem:
A Windows 11 23H2 update can sometimes disrupt dual-boot setups by overwriting the Linux bootloader. Here’s how to fix it:
1. Identify the Problem:
** You can no longer boot into your Linux operating system after the Windows update.*
** The Windows bootloader might have overwritten the Linux bootloader, leaving only Windows options in the boot menu.*
2. Fix the Bootloader:
** Boot from a Linux Live USB:*
Use a bootable USB drive with a live Linux environment (e.g., Fedora, Ubuntu).
** Identify the Linux Partition:*
Use tools like lsblk
or fdisk
to identify the partition where your Linux OS is installed.
** Mount the Linux Partition:*
Mount the identified partition to a mount point, for example, /mnt/linux
.
** Chroot into the Linux System:*
Use sudo chroot /mnt/linux
to enter the Linux environment from the live USB.
** Reinstall GRUB:*
Run sudo grub-install /dev/sdX
(replace /dev/sdX
with the correct device name) and sudo update-grub
to reinstall the GRUB bootloader.
** Mount EFI Partition (if applicable):*
If you have an EFI partition, mount it using sudo mount /dev/sdX1 /boot/efi
and then reinstall GRUB using the appropriate command for your system (e.g., sudo grub-install /dev/sdX1
).
** Reboot:*
After these steps, reboot your system, and you should see the GRUB boot menu with your Linux OS options.
3. Alternative Methods (if applicable):
** Boot Repair (Fedora):*
If you’re using Fedora, you can try the “Boot Repair” tool, which can automatically detect and fix boot issues.
** Boot Menu (UEFI):*
In some cases, Windows might have changed the boot order in the UEFI settings. You can access the UEFI settings (usually by pressing F2, F12, or Delete during boot) and change the boot order to prioritize your Linux bootloader.
Important Notes:
** Backups:*
Back up your data before making significant changes to the bootloader, as errors can lead to data loss.
** Secure Boot:*
If you have Secure Boot enabled, you might need to disable it temporarily to install or repair the bootloader.
** Windows Update History:*
If you believe a specific Windows update is causing the issue, you can try uninstalling it from Windows Update history.
** Separate Drives:*
Consider installing Windows and Linux on separate hard drives or SSDs to prevent Windows updates from overwriting the Linux bootloader.
Any comment on these steps before I attempt to apply this suggestion?