I am currently using Duplicacy WebUI to back up 2TB of data. I scheduled a backup for 10 hours each day, and it took a few days to complete the backup. If I need to restore this data on a new machine, how can I write a schedule to restore some of the data each day and complete the entire download in a few days?
The WebUI doesn’t support restore by schedule. You can write a script to invoke the CLI version periodically to restore.
The restore command I have found is: $ duplicacy restore -r 1
. For example, if I run this command and then restart the computer after a day. If I run $ duplicacy restore -r 1
again in the same directory, will it continue from where it left off?
You might also want to use the -overwrite
and -delete
flags as well.