I am using rsync for backups from remote FTP to local computer.
I read on internet that rsnapshot is better.
Just want to know which is used in production environment
|
feedback
|
|
rsnapshot uses rsync and
each copy 'seems' to be a full complete copy, but in fact any unchanged file is stored only once. it appears on several directories using hard links. the process is simple, let's say there are currently 4 copies, back-0 through back-3. when rsnapshot is invoked, it:
once you get familiar with the procedure, you'll find it very handy. it's not complex at all, sometimes i do it manually to keep sporadic 'previous versions' at interesting points of time (just before an important upgrade, just after installing and configuring a system, etc) | ||||
|
feedback
|
|
We use rsync to replicate data across the WAN from our primary backup server to our warm sites backup server. It has worked very well for that purpose. As far as rsnapshot I am not familiar with what the advantages would be for using that solution. | |||
|
feedback
|
|
A late answer on this FAQ: rsync is a copy/sync tool, very efficient for distant backups. rsnapshot and rdiff do more than a single backup: they keep a history of the backup. AFAIK, rdiff does it by keeping diffs of the files between each backup (differential backup), so the archives are not accessible as-is. OTOH rsnapshot uses hardlinks for identical files full copies of every changed files, so the archives are plain directories that users/admins can search from. So there are cases where each performs best. | |||
|
feedback
|