I'm starting this on two different arch installs, and I want to install fedora a well, but all with a shared home directory.
I have:
sda3 = ext4 and is the place for the home (mounted on both of the below at /home2)
sdb1 = bootloader
sdb2 = ext4 arch
sdb3 = btrfs arch
sdb4 = currently empty (will be fedora)
On btrfs I've run:
ln -s /home2/Downloads ~/Downloads
ln -s /home2/Desktop ~/Desktop
ln -s /home2/Public ~/Public
ln -s /home2/Music ~/Music
ln -s /home2/Pictures ~/Pictures
ln -s /home2/Videos ~/Videos
ln -s /home2/Templates ~/Templates```
But since doing that, not sure if it's related, suddenly on ext4 `ls /mnt/btrfs/home/`no longer contains my user directory, even though when I load into btrfs it's right there. I don't see how the above could've done this?
I had previously tried to run one commands `ln -s /home2/* ~/*` and `ln -s /home2/* -t ~/`but neither seemed to work as expected.