Is it possible to restore a duplicity backup from a certain time in the past?
For example, if I'm making daily incremental backups, is there a way to restore a backup from three days ago?
|
Is it possible to restore a duplicity backup from a certain time in the past? For example, if I'm making daily incremental backups, is there a way to restore a backup from three days ago? | |||
|
feedback
|
|
The -t argument will tell duplicity from what time to restore. Example: duplicity -t 3D --file-to-restore FILENAME scp://uid@other.host/some_dir /home/me/restored_file Will restore FILENAME from 3 days ago. | |||
|
feedback
|
|
I don't know duplicity, but the general restore process is to go back to the first FULL backup PRIOR to the date you want to restore to. Restore that FULL backup, then restore ALL the incremental backups since that FULL backup, in date order, until you get to the date you want. | |||||
feedback
|