timetraveler
Members
-
Joined
-
Last visited
Solutions
-
timetraveler's post in How to encrypt existing ZFS drive/Pool containing snapshots was marked as the answerThank you that worked.
This is what i used to move the data:
take a snapshot of all datasets
zfs list -H -o name -r poolname | while read dataset; do zfs snapshot "${dataset}@snapshot_name"; done transfer
zfs send -R -v cache@snapshot_transfer | zfs receive -F disk2
also make sure there are no regular folders on the root level!