Hello!
I need to install the system on a storage pool consisting of 2 disks with Btrfs. Here’s my plan:
-
Create a FAT32 partition
-
Combine the remaining space into a Btrfs pool with:
-
Metadata in RAID1
-
Data in SINGLE mode
-
sudo mkfs.btrfs -m raid1 -d single /dev/disk1 /dev/disk2
Then install in manual partition
How can I ensure:
-
Metadata is read primarily from one disk
-
Data is written strictly to the other disk