I'm working on a project where I'll be using tar to incrementally backup data on a server to a number of tapes. According to a senior co-worker of mine, tar will "set special flags on files so that it can tell if the files has been modified since last backup." I was never aware that tar could ever modify source files (other than deleting).
I've been having a heck of a time going though the GNU tar help page and the UNIX tar man page but I can not yet either verify or disprove what he said. So, is this complete bull and I'll have to use something like Bacula or can I do what he was explaining (and how)?
Cheers! Russell C
|
|
|||
|
|
|
I don't think that tar will do that as the filesystems don't have "special flags". You can use the |
|||||
|
|
Is your colleague a Windows guy? Because on Windows, there is the On Unix/Linux, backup programs normally use the ctime/mtime values of a file do decide if they need to backup the file - if the time is newer than in the backup, save it. You can tell tar to backup only files newer than the last backup with the |
||||
|
