Hacker News new | ask | show | jobs
by rejschaap 3266 days ago
Unrelated, but if you are looking for an alternative on FreeBSD you could consider using zfs and zfs sync
1 comments

That's… wildly different. Yeah, for backups, snapshots + zfs send is amazing, but rsync is a general purpose file sync tool.
zfs send is also a general purpose file sync tool, it just has the limitation that server side and client side must use ZFS.

The advantage of RSync is that it is independent of the file system - which is at the same time a huge disadvantage of RSync, as it prevents RSync from performing optimizations which zfs send can do.

> zfs send is also a general purpose file sync tool, it just has the limitation that server side and client side must use ZFS.

That's… not general-purpose at all. zfs send is a specific-purpose tool, the specific purpose being to serialise and output a ZFS snapshot.