@tisba @jwildeboer @homelab_de
I see, if I were you I would play a bit with zfs on the side and only then migrate anything #homeprod in your #homelab :D
And for off-site backups you can do simple sync/incremental backups. Borg and restic sound good, there are also some others but from all the similarly named tools I keep forgetting which ones were unreliable and should be avoided.
Wrt ZFS the biggest thing for me is the ability to snapshot and then move the snapshots around, clone into a new dataset etc. I just had a major scare because my whole camera/gallery storage was gone (rsync reporting "created directory /mnt/path/to/photos"). In the end it was a case of the dataset not being mounted properly but all the daily/weekly snapshots meant that I havent lost anything from my previous phone for example:
- `zfs clone pool/dataset@snapshot pool/cloned-dataset` and verify that my files are there.
- `zfs rollback ...@snapshot` to roll back.
Or hell, make changes to a clone and promote it to replace the origin/primary. At zero extra storage cost.
So, enough preaching! But #zfs is really great.