A website contains ~40GB images + files which needs to be backed up. Rollbacks need to be possible daily for the last 30 days. And backup server < 1.2TB

My idea is to have one full backup from 30 days ago, then incremental backups for the last 30 days. On each day the last incremental backup is combined with the full backup and a new incremental backup is added.

Can this strategy be implemented with rsync, if so how?

Are there any problems with this plan? A better plan?

PS: Incremental backups, not backup incrementally (which rsync does automatically)

link|improve this question

feedback

migrated from stackoverflow.com Jun 22 '11 at 12:48

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 1 down vote accepted

try looking into rsnapshot, should be in the package repo. It's based on rsync and i'm pretty sure will do what you need.

link|improve this answer
feedback

Also check rdiff-backup. Similar to rsnapshot, with different tradeoffs in terms of disk efficiency and restore speed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.