At the end I did get the needed file out from backup with the help from Excito support and by learning to use duplicity from command line.
Here is what I did (just in case someone finds it useful).
Note: I am not using encryption with the backup.
First you might want to find out the correct path to the file to be restored.
Code: Select all
duplicity --no-encryption list-current-files file:///home/storage/extern/<drive>/<path to the backup>/
Path to the backup is made from the name of your backup job and the name of the backup folder.
You find out that the file you needed has the following path.
Code: Select all
storage/folder_name/other_folder_name/missing_file.xls
Feed the file path to duplicity restore command.
Code: Select all
duplicity --no-encryption --file-to-restore storage/folder_name/other_folder_name/missing_file.xls file:///home/storage/extern/<drive>/<path to the backup>/ /home/storage/some_folder/missing_file.xls
Restored file can then be found from /home/storage/some_folder/missing_file.xls
If you need to restore older backup then use the --restore-time parameter in duplicity.
Let's say you want to restore a file that was backed up March 1. 2013 at 18:00:00.
Write out a following command.
Code: Select all
duplicity --no-encryption --restore-time 2013-03-01T18:00:00 --file-to-restore storage/folder_name/other_folder_name/missing_file.xls file:///home/storage/extern/<drive>/<path to the backup>/ /home/storage/some_folder/missing_file.xls
Glad Påsk
