How can I incrementally backup a large amount of data [with rsync]?
- by Annan
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)