I have 2 x 2TB disks (they are not equal). In the master I have my ZFS pool (rpool, where Proxmox is installed in). I'd like to clone/replicate the entire disk on the slave once a day.
How can I do?
I have 2 x 2TB disks (they are not equal). In the master I have my ZFS pool (rpool, where Proxmox is installed in). I'd like to clone/replicate the entire disk on the slave once a day.
How can I do?
The answer are "zfs send" and "zfs receive" commands. In your case may looking like:
root@master #> zfs send .... | ssh root@slave zfs receive ...
there are several options for full and incremental, see man zfs-send and zfs-receive.