Say I have hard drives A and B
B is the external backup files. Every week, i'd like to back up A into B, but only moving newer/updated files, removing the necessity to copy over files that have not been altered.
is it possible?
|
Say I have hard drives A and B B is the external backup files. Every week, i'd like to back up A into B, but only moving newer/updated files, removing the necessity to copy over files that have not been altered. is it possible? |
|||
|
|
|
What you are describing is essentially the default behavior of rsync, but your best bet would be to use -a, so your rsync would look like this:
|
|||
|
|
If you are in linux, use
Runs on the first day of every week, where Sunday = 0, Monday = 1... P.S. This really wont be a backup as you are only syncing and overwriting the files to B. Backup is termed only when data state X is preserved at time instance T. Where X never changes after T & is always preserved. |
||||
|
|