I'm still trying to better understand btrfs. On my main server I have a working snapshot and send/receive set of scripts to keep things working. In that system in my fstab I mount the rootfs without subvol=@ or @home if I want to do maintenance. Basically the equivalent to
whereas for normal booting it would look more like
So I was watching a youtuber today doing some snapper stuff and he was using Archlinux instead of *buntu. And to do the same mount for maintenance on the subvolumes, he had to
I tried it in a VM and my method of just mounting without any subvol option didn't work. I had to use the subvolid=5.
Is this a change that is coming to all btrfs systems or is this just a quirk with how Arch does it vs. Kubuntu?
Code:
mount /dev/sda3 /subvol
Code:
mount -o subvol=@ /dev/sda3 /
Code:
mount /dev/sda3 -o subvolid=5 /subvol
Is this a change that is coming to all btrfs systems or is this just a quirk with how Arch does it vs. Kubuntu?
Comment