I'm working on a backup sollution, using a qt gui which is triggered by right clicking on an item, and selecting "Backup".
This gui is storing every file and directory you want to backup in a mysql database.
The next step is to backup the directories and/or files by using:
rsync -aix --delete -r /path/to/list --out-format="%i|%n|" $HOME $BACKUP_MAP > $RSYNC_OUTPUT
The /path/to/list is a list of directories extracted from the mysql db.
Now depending on the output of rsync (RSYNC_OUTPUT, testing there are changes we are interested in) a snapshot is created:
btrfs subvolume snapshot %BACKUP_MAP "$SNAPSHOT_MAP/$DATE_FORMAT"
I want to write the step with rsync in the qt gui (so c++). How can I do this?
It's of course all about howto backup one file ( if there is a previous one) uring the function in librsync? Store the signature of a file in a list somewhere next to th backup?
Stef
--
You received this message because you are subscribed to the Google Groups "librsync" group.
To unsubscribe from this group and stop receiving emails from it, send an email to librsync+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Stef
--
You received this message because you are subscribed to the Google Groups "librsync" group.
To unsubscribe from this group and stop receiving emails from it, send an email to librsync+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "librsync" group.
To unsubscribe from this group and stop receiving emails from it, send an email to librsync+unsubscribe@googlegroups.com.