Posted on 21st Jan 2025
Dual Boot Pop OS 2024
To dual boot Pop!_OS 2024 with Windows, follow these steps:
Preparation
Installation
Final Steps
After a reboot, if you find you are booting straight into Pop and cant see a windows option, even after pressing esc, F2 or Del etc, then follow these final steps to ensure systemd-boot finds your windows partition and makes it an entry in the boot config.
os-prober
:sudo apt update
sudo apt install os-prober
This utility will automatically detect and add Windows to the systemd-boot menu.
Run os-prober
:
sudo os-prober
This command will scan for operating systems and output a list of detected entries. You should see the Windows Boot Manager entry.
Mount the Windows boot partition:
sudo mount /dev/sda1 /mnt # Replace sda1 with your Windows boot partition
sudo cp -r /mnt/EFI/Microsoft /boot/efi/EFI/
sudo reboot
The idea behind this process is simply the PC doesnt need two ESP partitions and we basically want to copy all the files from windows boot manager to systemd-boot to allow us to easily swap OS!
Note: If you're still having issues, you can try installing GRUB instead of systemd-boot. However, this would replace systemd-boot as your default bootloader.
Remember to replace /dev/sda1
with the actual partition device containing your Windows installation. Also, ensure that your BIOS is set to boot from the EFI partition (usually /dev/sda1
) and not from the MBR (Master Boot Record).