On 25.10.16 13:23, Jan Novak wrote:
>
>
> Am 25.10.2016 um 11:58 schrieb Markus Koeberl:
>>> yes, also another topic: I use zfs. Will backuppc handle snapshots in
>>> the future?
>> There was this posting on the ZFSonLinux list which might be interesting for 
>> you:
>> http://list.zfsonlinux.org/pipermail/zfs-discuss/2014-March/014859.html
>> It allows zfs send/receive over a highly unstable connection
>
> I had read the php code - there are some errors to fix (what i had done)
> and the script is now running - but i'm not shure to use it ...
>
> First I will try to use zfs native (build in) functions to snap the data
> from one location to the other.
>
> Last question:
> Can Backuppc handle zfs block data? (there are no files to sync, only a
> raw "partition")?
>
> Jan
>

BackupPC knows nothing about filesystem block data.

You should send a snapshot of the filesystem where the BackupPC pool resides 
the remote server.
Then you will have an identical filesystem on the receiving side.

root@sending# zfs snapshot -r zpool/fs@2016-10-25
root@receiving# nc -l 8023 | zfs receive -vd zpool
root@sending# zfs send -vRD zpool/fs@2016-10-25 | nc receiving 8023

If you can't trust your environment, use ssh instead of nc.

------------------------------------------------------------------------------
The Command Line: Reinvented for Modern Developers
Did the resurgence of CLI tooling catch you by surprise?
Reconnect with the command line and become more productive. 
Learn the new .NET and ASP.NET CLI. Get your free copy!
http://sdm.link/telerik
_______________________________________________
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:    https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:    http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/

Reply via email to