Hi all,
I have an LXC container on Proxmox that stores ~9.7TB of data under /zbiornik-alpha/subvol-100-disk-0/nas. This is a ZFS dataset with refquota=15T, and it's about 70% full. I’d like to move /nas into a separate ZFS dataset (/zbiornik-alpha/shared-nas) so it can be mounted into multiple containers.
Here’s the concern:
If I run, on Proxmox:
...will that move operation:
I’ve read that mv across ZFS datasets behaves like cp + rm, but want to confirm real behavior — especially in low free space conditions (~4.3TB available on the whole ZFS pool). I'm trying to avoid failed moves or partial state.
Any insight or best practices appreciated!
I have an LXC container on Proxmox that stores ~9.7TB of data under /zbiornik-alpha/subvol-100-disk-0/nas. This is a ZFS dataset with refquota=15T, and it's about 70% full. I’d like to move /nas into a separate ZFS dataset (/zbiornik-alpha/shared-nas) so it can be mounted into multiple containers.
Here’s the concern:
If I run, on Proxmox:
Code:
mv /zbiornik-alpha/subvol-100-disk-0/nas /zbiornik-alpha/shared-nas/
- Copy each file and delete it immediately after (i.e., low temporary space use), or
- Copy all files first and only delete the source at the end (i.e., requires 9.7TB of free space)?
I’ve read that mv across ZFS datasets behaves like cp + rm, but want to confirm real behavior — especially in low free space conditions (~4.3TB available on the whole ZFS pool). I'm trying to avoid failed moves or partial state.
Any insight or best practices appreciated!
Last edited: