Create EFI partition before installing Windows 10
Most likely, you won't need larger ESP (EFI System Partition). Windows OS loader is rather small and Fedora will most likely just install GRUB on ESP and place the rest of its boot files in /boot
which will be on a separate partition anyway. Unless you're going to experiment with unusual Linux setups (like EFISTUB booting etc.), 100 MB should be sufficient.
If you want to have a larger ESP just in case, you can create one using Windows installation media before the partitioning step.
How to manually create ESP using Windows installation media
Before the partitioning step:
(Technically, you could also do this on the partitioning step and click Refresh afterwards.)
- Press Shift+F10 to open Command Line.
- Type
diskpart
Enter. Diskpart will take a while to launch. - Type
list disk
Enter A list of disks will be printed. Note the number next to yours (most likely0
). Select that disk:select disk 0
Enter. - Create ESP:
create partition efi size=500
Enter (500
is partition size in MiB). - Exit Diskpart:
exit
Enter.