• 10 Posts
  • 312 Comments
Joined 1 年前
cake
Cake day: 2023年6月24日

help-circle


  • This is a rabbit hole. Most software packages out there use hundreds of modules with other names. Heck, I bet the client you are using would require 27 different slashes for this to make sense.

    Sometimes you put a lot of work into a foundation. Sometimes you use a foundation. Pride in one’s work does not always require recognition.













  • I used to use rsync to copy data from my storage array on one machine to an external and an off site backup. Since a lot of it was code, it always took forever to scan all the small files, and I had to script unlocking remote partitions.

    With encrypted ZFS, I can just zfs snap then zfs send, and it does the same thing at the block level, raw, so way faster, less data transfer, and no need to send a key or passphrase unless I need to mount it at the destination (meaning a cloud provider could never know the data, for instance).

    ZFS is also recursive, so if I have s/storage and /storage/stuff defined, I can snap and send either level, which makes it as versatile as rsync.