/boot file system cannot be of type btrfs subvolume

Clash Royale CLAN TAG#URR8PPP
up vote
-1
down vote
favorite
I am trying to install Fedora 27 along with Windows 10. Created the bootable flash drive using Rufus in "GPT partition scheme for UEFI" mode. I allocated a /boot/efi and /. But I can not proceed. There is an error:
/boot file system cannot be of type btrfs subvolume

fedora btrfs
add a comment |Â
up vote
-1
down vote
favorite
I am trying to install Fedora 27 along with Windows 10. Created the bootable flash drive using Rufus in "GPT partition scheme for UEFI" mode. I allocated a /boot/efi and /. But I can not proceed. There is an error:
/boot file system cannot be of type btrfs subvolume

fedora btrfs
Why post image's when the error is already in text above?
â Hunter.S.Thompson
Oct 21 '17 at 15:49
@Hunter.S.Thompson removed
â user158646
Oct 21 '17 at 15:57
add a comment |Â
up vote
-1
down vote
favorite
up vote
-1
down vote
favorite
I am trying to install Fedora 27 along with Windows 10. Created the bootable flash drive using Rufus in "GPT partition scheme for UEFI" mode. I allocated a /boot/efi and /. But I can not proceed. There is an error:
/boot file system cannot be of type btrfs subvolume

fedora btrfs
I am trying to install Fedora 27 along with Windows 10. Created the bootable flash drive using Rufus in "GPT partition scheme for UEFI" mode. I allocated a /boot/efi and /. But I can not proceed. There is an error:
/boot file system cannot be of type btrfs subvolume

fedora btrfs
edited Oct 21 '17 at 15:56
asked Oct 21 '17 at 15:42
user158646
Why post image's when the error is already in text above?
â Hunter.S.Thompson
Oct 21 '17 at 15:49
@Hunter.S.Thompson removed
â user158646
Oct 21 '17 at 15:57
add a comment |Â
Why post image's when the error is already in text above?
â Hunter.S.Thompson
Oct 21 '17 at 15:49
@Hunter.S.Thompson removed
â user158646
Oct 21 '17 at 15:57
Why post image's when the error is already in text above?
â Hunter.S.Thompson
Oct 21 '17 at 15:49
Why post image's when the error is already in text above?
â Hunter.S.Thompson
Oct 21 '17 at 15:49
@Hunter.S.Thompson removed
â user158646
Oct 21 '17 at 15:57
@Hunter.S.Thompson removed
â user158646
Oct 21 '17 at 15:57
add a comment |Â
3 Answers
3
active
oldest
votes
up vote
1
down vote
accepted
/boot must be a file system that the GRUB bootloader supports. Btrfs is not one of them.
While your root can be Btrfs you would also need another partition at /boot that GRUB supports such as EXT4.
Sources: https://docs.fedoraproject.org/f26/install-guide/install/Installing_Using_Anaconda.html#sect-installation-gui-manual-partitioning-recommended
/boot/efiis in ext4 format. As I am in EFI mode do I need to create separate partition for/boot?
â user158646
Oct 21 '17 at 16:07
Yes. You need three partitions here. /boot/efi should be FAT for your UEFI. /boot should be anything GRUB supports. That includes FAT but I recommend using EXT4. Then you can make your root Btrfs.
â jdwolf
Oct 21 '17 at 16:11
Note that the error you are getting is related to GRUB and thats what I am referring to in my answer.
â jdwolf
Oct 21 '17 at 16:12
GRUB does support Btrfs, at least according to the Arch wiki.
â Fox
Oct 22 '17 at 0:55
+Fox As far as Fedora is concerned it doesn't. It might be more accurate to say in my answer that Fedora doesn't support that configuration.
â jdwolf
Oct 22 '17 at 1:28
add a comment |Â
up vote
2
down vote
Disclaimer: not a Fedora person. Arch Linux (what I use) recommends that the EFI System Partition (ESP) be mounted directly at /boot. In any case, the error is correct. The ESP needs to be FAT of some sort (generally VFAT).
If you are using a graphical program to partition your disk, it probably gives you a way to select the filesystem type. If you are using the command line, mkfs.vfat (or possibly mkfs.msdos) is what you want.
If you are dual-booting and have already installed another system in EFI mode, you do not want to overwrite (or reformat) the ESP. Simply reuse the existing one.
Edit: I see in your screenshot both a 512MB /boot/EFI and (in the "Unknown" section) EFI System Partition. This will not work. You will need to use (and not format) the existing ESP.
add a comment |Â
up vote
0
down vote
TL;DR
UEFI needs an ESP partition.
The ESP partition needs to be formatted with a FAT based file system.
The EFI system partition (ESP) is a partition on a data storage device that is used by computers that boot using the Unified Extensible Firmware Interface (UEFI).
When a computer is booted, UEFI firmware loads files stored on the ESP to start installed operating system's.
An ESP needs to be formatted with a FAT based file system as part of the UEFI specification, If that is not done, you will not be able to boot into your newly installed OS.
The solution to your problem would be to create /boot and / partition's.
Format the /boot and / partition to ext4 and use the already created ESP partition by window's. The installation should run successfully after.
add a comment |Â
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
/boot must be a file system that the GRUB bootloader supports. Btrfs is not one of them.
While your root can be Btrfs you would also need another partition at /boot that GRUB supports such as EXT4.
Sources: https://docs.fedoraproject.org/f26/install-guide/install/Installing_Using_Anaconda.html#sect-installation-gui-manual-partitioning-recommended
/boot/efiis in ext4 format. As I am in EFI mode do I need to create separate partition for/boot?
â user158646
Oct 21 '17 at 16:07
Yes. You need three partitions here. /boot/efi should be FAT for your UEFI. /boot should be anything GRUB supports. That includes FAT but I recommend using EXT4. Then you can make your root Btrfs.
â jdwolf
Oct 21 '17 at 16:11
Note that the error you are getting is related to GRUB and thats what I am referring to in my answer.
â jdwolf
Oct 21 '17 at 16:12
GRUB does support Btrfs, at least according to the Arch wiki.
â Fox
Oct 22 '17 at 0:55
+Fox As far as Fedora is concerned it doesn't. It might be more accurate to say in my answer that Fedora doesn't support that configuration.
â jdwolf
Oct 22 '17 at 1:28
add a comment |Â
up vote
1
down vote
accepted
/boot must be a file system that the GRUB bootloader supports. Btrfs is not one of them.
While your root can be Btrfs you would also need another partition at /boot that GRUB supports such as EXT4.
Sources: https://docs.fedoraproject.org/f26/install-guide/install/Installing_Using_Anaconda.html#sect-installation-gui-manual-partitioning-recommended
/boot/efiis in ext4 format. As I am in EFI mode do I need to create separate partition for/boot?
â user158646
Oct 21 '17 at 16:07
Yes. You need three partitions here. /boot/efi should be FAT for your UEFI. /boot should be anything GRUB supports. That includes FAT but I recommend using EXT4. Then you can make your root Btrfs.
â jdwolf
Oct 21 '17 at 16:11
Note that the error you are getting is related to GRUB and thats what I am referring to in my answer.
â jdwolf
Oct 21 '17 at 16:12
GRUB does support Btrfs, at least according to the Arch wiki.
â Fox
Oct 22 '17 at 0:55
+Fox As far as Fedora is concerned it doesn't. It might be more accurate to say in my answer that Fedora doesn't support that configuration.
â jdwolf
Oct 22 '17 at 1:28
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
/boot must be a file system that the GRUB bootloader supports. Btrfs is not one of them.
While your root can be Btrfs you would also need another partition at /boot that GRUB supports such as EXT4.
Sources: https://docs.fedoraproject.org/f26/install-guide/install/Installing_Using_Anaconda.html#sect-installation-gui-manual-partitioning-recommended
/boot must be a file system that the GRUB bootloader supports. Btrfs is not one of them.
While your root can be Btrfs you would also need another partition at /boot that GRUB supports such as EXT4.
Sources: https://docs.fedoraproject.org/f26/install-guide/install/Installing_Using_Anaconda.html#sect-installation-gui-manual-partitioning-recommended
answered Oct 21 '17 at 16:03
jdwolf
2,392116
2,392116
/boot/efiis in ext4 format. As I am in EFI mode do I need to create separate partition for/boot?
â user158646
Oct 21 '17 at 16:07
Yes. You need three partitions here. /boot/efi should be FAT for your UEFI. /boot should be anything GRUB supports. That includes FAT but I recommend using EXT4. Then you can make your root Btrfs.
â jdwolf
Oct 21 '17 at 16:11
Note that the error you are getting is related to GRUB and thats what I am referring to in my answer.
â jdwolf
Oct 21 '17 at 16:12
GRUB does support Btrfs, at least according to the Arch wiki.
â Fox
Oct 22 '17 at 0:55
+Fox As far as Fedora is concerned it doesn't. It might be more accurate to say in my answer that Fedora doesn't support that configuration.
â jdwolf
Oct 22 '17 at 1:28
add a comment |Â
/boot/efiis in ext4 format. As I am in EFI mode do I need to create separate partition for/boot?
â user158646
Oct 21 '17 at 16:07
Yes. You need three partitions here. /boot/efi should be FAT for your UEFI. /boot should be anything GRUB supports. That includes FAT but I recommend using EXT4. Then you can make your root Btrfs.
â jdwolf
Oct 21 '17 at 16:11
Note that the error you are getting is related to GRUB and thats what I am referring to in my answer.
â jdwolf
Oct 21 '17 at 16:12
GRUB does support Btrfs, at least according to the Arch wiki.
â Fox
Oct 22 '17 at 0:55
+Fox As far as Fedora is concerned it doesn't. It might be more accurate to say in my answer that Fedora doesn't support that configuration.
â jdwolf
Oct 22 '17 at 1:28
/boot/efi is in ext4 format. As I am in EFI mode do I need to create separate partition for /boot?â user158646
Oct 21 '17 at 16:07
/boot/efi is in ext4 format. As I am in EFI mode do I need to create separate partition for /boot?â user158646
Oct 21 '17 at 16:07
Yes. You need three partitions here. /boot/efi should be FAT for your UEFI. /boot should be anything GRUB supports. That includes FAT but I recommend using EXT4. Then you can make your root Btrfs.
â jdwolf
Oct 21 '17 at 16:11
Yes. You need three partitions here. /boot/efi should be FAT for your UEFI. /boot should be anything GRUB supports. That includes FAT but I recommend using EXT4. Then you can make your root Btrfs.
â jdwolf
Oct 21 '17 at 16:11
Note that the error you are getting is related to GRUB and thats what I am referring to in my answer.
â jdwolf
Oct 21 '17 at 16:12
Note that the error you are getting is related to GRUB and thats what I am referring to in my answer.
â jdwolf
Oct 21 '17 at 16:12
GRUB does support Btrfs, at least according to the Arch wiki.
â Fox
Oct 22 '17 at 0:55
GRUB does support Btrfs, at least according to the Arch wiki.
â Fox
Oct 22 '17 at 0:55
+Fox As far as Fedora is concerned it doesn't. It might be more accurate to say in my answer that Fedora doesn't support that configuration.
â jdwolf
Oct 22 '17 at 1:28
+Fox As far as Fedora is concerned it doesn't. It might be more accurate to say in my answer that Fedora doesn't support that configuration.
â jdwolf
Oct 22 '17 at 1:28
add a comment |Â
up vote
2
down vote
Disclaimer: not a Fedora person. Arch Linux (what I use) recommends that the EFI System Partition (ESP) be mounted directly at /boot. In any case, the error is correct. The ESP needs to be FAT of some sort (generally VFAT).
If you are using a graphical program to partition your disk, it probably gives you a way to select the filesystem type. If you are using the command line, mkfs.vfat (or possibly mkfs.msdos) is what you want.
If you are dual-booting and have already installed another system in EFI mode, you do not want to overwrite (or reformat) the ESP. Simply reuse the existing one.
Edit: I see in your screenshot both a 512MB /boot/EFI and (in the "Unknown" section) EFI System Partition. This will not work. You will need to use (and not format) the existing ESP.
add a comment |Â
up vote
2
down vote
Disclaimer: not a Fedora person. Arch Linux (what I use) recommends that the EFI System Partition (ESP) be mounted directly at /boot. In any case, the error is correct. The ESP needs to be FAT of some sort (generally VFAT).
If you are using a graphical program to partition your disk, it probably gives you a way to select the filesystem type. If you are using the command line, mkfs.vfat (or possibly mkfs.msdos) is what you want.
If you are dual-booting and have already installed another system in EFI mode, you do not want to overwrite (or reformat) the ESP. Simply reuse the existing one.
Edit: I see in your screenshot both a 512MB /boot/EFI and (in the "Unknown" section) EFI System Partition. This will not work. You will need to use (and not format) the existing ESP.
add a comment |Â
up vote
2
down vote
up vote
2
down vote
Disclaimer: not a Fedora person. Arch Linux (what I use) recommends that the EFI System Partition (ESP) be mounted directly at /boot. In any case, the error is correct. The ESP needs to be FAT of some sort (generally VFAT).
If you are using a graphical program to partition your disk, it probably gives you a way to select the filesystem type. If you are using the command line, mkfs.vfat (or possibly mkfs.msdos) is what you want.
If you are dual-booting and have already installed another system in EFI mode, you do not want to overwrite (or reformat) the ESP. Simply reuse the existing one.
Edit: I see in your screenshot both a 512MB /boot/EFI and (in the "Unknown" section) EFI System Partition. This will not work. You will need to use (and not format) the existing ESP.
Disclaimer: not a Fedora person. Arch Linux (what I use) recommends that the EFI System Partition (ESP) be mounted directly at /boot. In any case, the error is correct. The ESP needs to be FAT of some sort (generally VFAT).
If you are using a graphical program to partition your disk, it probably gives you a way to select the filesystem type. If you are using the command line, mkfs.vfat (or possibly mkfs.msdos) is what you want.
If you are dual-booting and have already installed another system in EFI mode, you do not want to overwrite (or reformat) the ESP. Simply reuse the existing one.
Edit: I see in your screenshot both a 512MB /boot/EFI and (in the "Unknown" section) EFI System Partition. This will not work. You will need to use (and not format) the existing ESP.
edited Oct 21 '17 at 16:15
answered Oct 21 '17 at 15:47
Fox
4,74111131
4,74111131
add a comment |Â
add a comment |Â
up vote
0
down vote
TL;DR
UEFI needs an ESP partition.
The ESP partition needs to be formatted with a FAT based file system.
The EFI system partition (ESP) is a partition on a data storage device that is used by computers that boot using the Unified Extensible Firmware Interface (UEFI).
When a computer is booted, UEFI firmware loads files stored on the ESP to start installed operating system's.
An ESP needs to be formatted with a FAT based file system as part of the UEFI specification, If that is not done, you will not be able to boot into your newly installed OS.
The solution to your problem would be to create /boot and / partition's.
Format the /boot and / partition to ext4 and use the already created ESP partition by window's. The installation should run successfully after.
add a comment |Â
up vote
0
down vote
TL;DR
UEFI needs an ESP partition.
The ESP partition needs to be formatted with a FAT based file system.
The EFI system partition (ESP) is a partition on a data storage device that is used by computers that boot using the Unified Extensible Firmware Interface (UEFI).
When a computer is booted, UEFI firmware loads files stored on the ESP to start installed operating system's.
An ESP needs to be formatted with a FAT based file system as part of the UEFI specification, If that is not done, you will not be able to boot into your newly installed OS.
The solution to your problem would be to create /boot and / partition's.
Format the /boot and / partition to ext4 and use the already created ESP partition by window's. The installation should run successfully after.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
TL;DR
UEFI needs an ESP partition.
The ESP partition needs to be formatted with a FAT based file system.
The EFI system partition (ESP) is a partition on a data storage device that is used by computers that boot using the Unified Extensible Firmware Interface (UEFI).
When a computer is booted, UEFI firmware loads files stored on the ESP to start installed operating system's.
An ESP needs to be formatted with a FAT based file system as part of the UEFI specification, If that is not done, you will not be able to boot into your newly installed OS.
The solution to your problem would be to create /boot and / partition's.
Format the /boot and / partition to ext4 and use the already created ESP partition by window's. The installation should run successfully after.
TL;DR
UEFI needs an ESP partition.
The ESP partition needs to be formatted with a FAT based file system.
The EFI system partition (ESP) is a partition on a data storage device that is used by computers that boot using the Unified Extensible Firmware Interface (UEFI).
When a computer is booted, UEFI firmware loads files stored on the ESP to start installed operating system's.
An ESP needs to be formatted with a FAT based file system as part of the UEFI specification, If that is not done, you will not be able to boot into your newly installed OS.
The solution to your problem would be to create /boot and / partition's.
Format the /boot and / partition to ext4 and use the already created ESP partition by window's. The installation should run successfully after.
edited Oct 21 '17 at 16:20
answered Oct 21 '17 at 16:09
Hunter.S.Thompson
4,54431334
4,54431334
add a comment |Â
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f399561%2fboot-file-system-cannot-be-of-type-btrfs-subvolume%23new-answer', 'question_page');
);
Post as a guest
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
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
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
Why post image's when the error is already in text above?
â Hunter.S.Thompson
Oct 21 '17 at 15:49
@Hunter.S.Thompson removed
â user158646
Oct 21 '17 at 15:57