Zkeep.io
private beta
A safe place for your ZFS snapshots
Zkeep lets you send and recieve zfs snapshots to and from "the cloud".
This makes it a very convenient and efficient way to do offsite backups of ZFS filesystems. To backup
a filesystem you simply pipe the output from zfs send
to the zkeep client, which then encrypts the data before uploading it to Google Cloud Storage.
Zkeep is made to be a secure, dependable, easy to use, and reasonable way to do offsite backups of ZFS data. ZFS' ability to create snapshots of the state of the complete filesystem and send just the incremental changes between them from one system to another makes it a great way to do dependable offsite backups.
Introductory examples
- zfs create snapshot tank@snap1
- zfs send tank@snap1 | zkeep upload
- zfs create snapshot tank@snap2
- zfs send -i tank@snap1 @snap2 | zkeep upload
- zkeep download --snapshot tank@send2 | zfs receieve tank
Interesting?
It's in private beta for now, stay tuned for updates!