You are not logged in.
Hi,
I am going to install Arch on a laptop which has a large btrfs partition with two sub volumes / and /home (in addition to a swap partition). Both btrfs volumes are compressed (lzo). I would like to keep /home untouched with all it's date and install on /. Will that be possible?
Offline
Definitely possible. I have btrfs on a luks volume on lvm, which also contains my /boot and swap partitions. I have / (root) and /home on separate btrfs subvolumes.
Offline
Thank you. Good to know. Will the installer work with such a setup?
Offline
Thank you. Good to know. Will the installer work with such a setup?
Considering that you are the installer, yes this will work. When you get to the part about making partitions, just make one large btrfs partition and then create the necessary subvolumes. Then unmount the filesystem and then mount each using the subvol=/path/to/subvol.
For example, if you were to make a rootfs and a home subvol, then you would likely have /rootfs and /home relative to the very start of the btrfs filesystem. So you would then do:
# mount -o subvol=rootfs /dev/sdXY /mnt
# mkdir /mnt/home
#mount -o subvol=home /dev/sdXY /mnt/home
Offline