Quote:
Would it be cheaper in time and effort to just purchase a 32GB flash drive? Can you assume the changes will always be <2GB?
|
Quote:
32G flash drive would shorten this exercise considerably.
|
@michaelk, @Habitual
Actually the changes in my data to be backed up would not go more than ~1G in a week,
and yeah
I would love to buy an external hard drive someday.
Quote:
You could possibly use xdelta..
|
Quote:
Maybe cpio + tar's split fuction?
|
@dolphin_oracle, @Habitual
I would certainly look into that.
But meanwhile I have got rsync option --compare-dest
Although I have not tried it practically for my main backup, but I have experimented as follows..
Code:
rsync -vcrlDh --stats --progress --compare-dest=/destination/ /source/ /pendrive
This worked for me and only dumped changed files into /pendrive.
Also
Code:
rsync -vcrlDh --stats --progress /pendrive /destination
syncs changed files to the destination.
Thus these two commands provide me what I need, i.e.
Quote:
What I need:
rsync /source /temp
(Now temp has only delta/changes not whole source.)
then
rsync /temp /destination...
|
This I can also combine with sanpshots backup feature with utility like rsnapshot, backintime etc. (using a snapshot as /destination). More on this I will post later when I will implement it practically.
Since the solution command is obtained, so I am now marking this as solved.