I have an existing Windows 10 installation on my main drive with its efi boot partition on my SSD - nvme0n1p1. I also have an additional storage HD on which I previously installed elementaryOS and had no issues dual booting it with Windows through GRUB.
I now decided to familiarise myself with Manjaro instead, so I deleted the partitions with elementaryOS on my HD and replaced the space with new partitions to install Manjaro. During the installation procedure, I have created a new boot partition as per the recommendations on the storage HD - sda4.
Now, the new GRUB installation discovers Windows 10 and adds an option in the boot menu:
savedefault
insmod part_gpt
insmod fat
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root CC68-021C
else
search --no-floppy --fs-uuid --set=root CC68-021C
fi
chainloader /efi/Microsoft/Boot/bootmgfw.efi
But when I try to boot into Windows, I get an error: âno such device: CC68-021Câ. I crossâchecked the UID with:
blkid /dev/nvme0n1p1
/dev/nvme0n1p1: LABEL=âSYSTEMâ UUID=âCC68-021Câ BLOCK_SIZE=â512â TYPE=âvfatâ PARTLABEL=âEFI system partit
ionâ PARTUUID=â843e529e-a9c0-4707-82b4-f205ac10d0e9â
The os-prober also discovers Windows:
os-prober
/dev/nvme0n1p1@/efi/Microsoft/Boot/bootmgfw.efi:Windows Boot Manager:Windows:efi
My partitions are as follows:
lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 931.5G 0 disk
ââsda1 8:1 0 891G 0 part
ââsda2 8:2 0 38.1G 0 part /
ââsda3 8:3 0 2G 0 part [SWAP]
ââsda4 8:4 0 512.7M 0 part /boot/efi
nvme0n1 259:0 0 476.9G 0 disk
âânvme0n1p1 259:1 0 260M 0 part
âânvme0n1p2 259:2 0 16M 0 part
âânvme0n1p3 259:3 0 475.9G 0 part
âânvme0n1p4 259:4 0 800M 0 part
I tried to update grub and even reinstall Manjaro after removing and recreating partitions again, but nothing changed. At the moment Iâm only able to boot into Windows by changing the boot-order in the BIOS to prioritise Windows Boot Manager.
Being a total newbie, Iâm not sure how to resolve this problem so I can simply boot into Windows from the grub menu. Is this problem occurring because I have 2 different boot partitions on SSD and HD? Can someone kindly assist me in this issue?
Thanking you in advance!