Create EFI partition before installing Windows 10
up vote
0
down vote
favorite
I'm currently using a dual boot setup on my laptop, with Windows 10 and Fedora and I'm planning to replace my HDD with an SSD for obvious reasons.
I'll make a clean installation of both OS, but I've got a doubt regarding the EFI partition: since Windows creates a 100 mb big ESP by default (if I remember correctly) and that's not enough, I've read that the best way to have a bigger EFI partition is to create it before the installation of Windows 10.
Is that right? Or is there a better way to proceed?
windows-10 multi-boot uefi efi boot-partition
add a comment |
up vote
0
down vote
favorite
I'm currently using a dual boot setup on my laptop, with Windows 10 and Fedora and I'm planning to replace my HDD with an SSD for obvious reasons.
I'll make a clean installation of both OS, but I've got a doubt regarding the EFI partition: since Windows creates a 100 mb big ESP by default (if I remember correctly) and that's not enough, I've read that the best way to have a bigger EFI partition is to create it before the installation of Windows 10.
Is that right? Or is there a better way to proceed?
windows-10 multi-boot uefi efi boot-partition
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm currently using a dual boot setup on my laptop, with Windows 10 and Fedora and I'm planning to replace my HDD with an SSD for obvious reasons.
I'll make a clean installation of both OS, but I've got a doubt regarding the EFI partition: since Windows creates a 100 mb big ESP by default (if I remember correctly) and that's not enough, I've read that the best way to have a bigger EFI partition is to create it before the installation of Windows 10.
Is that right? Or is there a better way to proceed?
windows-10 multi-boot uefi efi boot-partition
I'm currently using a dual boot setup on my laptop, with Windows 10 and Fedora and I'm planning to replace my HDD with an SSD for obvious reasons.
I'll make a clean installation of both OS, but I've got a doubt regarding the EFI partition: since Windows creates a 100 mb big ESP by default (if I remember correctly) and that's not enough, I've read that the best way to have a bigger EFI partition is to create it before the installation of Windows 10.
Is that right? Or is there a better way to proceed?
windows-10 multi-boot uefi efi boot-partition
windows-10 multi-boot uefi efi boot-partition
edited Mar 27 at 10:54
Richard
3,38042554
3,38042554
asked Mar 27 at 10:06
Lolu
111
111
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
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.
Thank you very much, I'll try this! The reason I' m asking is that I had some troubles with the partition size in the past when I installed refind.
– Lolu
Mar 27 at 10:35
I'm not familiar with rEFInd, but creating a larger ESP may be a good idea if you're going to use it.
– gronostaj
Mar 27 at 10:56
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
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.
Thank you very much, I'll try this! The reason I' m asking is that I had some troubles with the partition size in the past when I installed refind.
– Lolu
Mar 27 at 10:35
I'm not familiar with rEFInd, but creating a larger ESP may be a good idea if you're going to use it.
– gronostaj
Mar 27 at 10:56
add a comment |
up vote
0
down vote
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.
Thank you very much, I'll try this! The reason I' m asking is that I had some troubles with the partition size in the past when I installed refind.
– Lolu
Mar 27 at 10:35
I'm not familiar with rEFInd, but creating a larger ESP may be a good idea if you're going to use it.
– gronostaj
Mar 27 at 10:56
add a comment |
up vote
0
down vote
up vote
0
down vote
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.
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.
answered Mar 27 at 10:21
gronostaj
27.7k1368107
27.7k1368107
Thank you very much, I'll try this! The reason I' m asking is that I had some troubles with the partition size in the past when I installed refind.
– Lolu
Mar 27 at 10:35
I'm not familiar with rEFInd, but creating a larger ESP may be a good idea if you're going to use it.
– gronostaj
Mar 27 at 10:56
add a comment |
Thank you very much, I'll try this! The reason I' m asking is that I had some troubles with the partition size in the past when I installed refind.
– Lolu
Mar 27 at 10:35
I'm not familiar with rEFInd, but creating a larger ESP may be a good idea if you're going to use it.
– gronostaj
Mar 27 at 10:56
Thank you very much, I'll try this! The reason I' m asking is that I had some troubles with the partition size in the past when I installed refind.
– Lolu
Mar 27 at 10:35
Thank you very much, I'll try this! The reason I' m asking is that I had some troubles with the partition size in the past when I installed refind.
– Lolu
Mar 27 at 10:35
I'm not familiar with rEFInd, but creating a larger ESP may be a good idea if you're going to use it.
– gronostaj
Mar 27 at 10:56
I'm not familiar with rEFInd, but creating a larger ESP may be a good idea if you're going to use it.
– gronostaj
Mar 27 at 10:56
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1308324%2fcreate-efi-partition-before-installing-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown