We backup some folders to a remote host using rsync. The destination folder will use compression.
At first login to the remote server and allow ssh access as root (make sure, password authentication is disabled). We need this to fully backup permissions:
echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
service sshd restart
Now create a backup volume:
zfs create -o compression=zstd-10 -o mountpoint=/backup zroot/backup
Related Posts
Apr 29 | ZFS | 35 min read |
Jun 15 | Acme.sh | 3 min read |
Oct 04 | HAProxy | 3 min read |
Oct 03 | Poudriere | 9 min read |
Jul 05 | Install FreeBSD | 2 min read |