Adam Horne wrote:I want to copy my archive over to HD3 a few times a week. It seems a little dangerous to make an archive of an archive, but what do you recommend?
I don't know about "dangerous"?I have a couple of archives that I archive regularly. I would describe it as "cumbersome" because to recover something one must first recall the archive, then open that archive to recall the files.
The fundamental problem you're going to run into is that there's no way to sync a large file without reading the entire file and/or making a copy of the entire file, every time you sync. It's the nature of synchronization programs.
Most synchronization programs performs syncs in one of two ways. The simple way is to compare the two files (by looking at their modification date or actually reading both files) and then duplicating one of them if they are different. The end result is a copy of the entire file.
More sophisticated ones (like rsync) read the data blocks of each file, generate a "fingerprint" (checksum) for each block, and then compare those fingerprints. If they match, the blocks are the same. If not, the non-matching blocks are copied. This might seem to be terribly efficient, but most implementations work by first making a duplicate of the original file before modifying it, and then deleting the original. This is the safe way to synchronize the two, but doesn't save any data copying. The result is that the entire file still gets copied every time, and also requires that you have twice the amount of disk space as the file.
Making an archive of the archive is actually the most efficient. QRecall uses technology similar to advanced synchronization programs, but in a different way. The archive database already stores the "fingerprints" of all the data blocks already in the archive. So it's possible to capture the blocks that haven't changed without having to physically read or duplicate the unchanged data. Only the changed blocks need to be copied, and that's exactly what QRecall does.
My advice is not to do either. If it's a drive connected to the system you're backing up, simply create a second set of actions to back up your same items, using a much more leisurely (once/twice a week) schedule. You don't gain anything in terms of security or efficiency trying to backup the backup, this method is easy to recover from, it's just as safe as the "daily" archive, and it's ultimately more efficient.