Browse files backed up with duplicity?

Duplicity has options to

  1. List backup sets duplicity collection-status
  2. List files inside a backup set duplicity list-current-files

As an example, you can know which backup sets are available :

duplicity collection-status /location/of/your/backups

And then list files of the 5 months ago backup set :

duplicity list-current-files -t 5M /location/of/your/backups | less

Finally you can restore with :

duplicity -t 5M --file-to-restore "path/to/My Documents" /location/of/your/backups /home/user/where_to_restore

Hope this can help, even if the question was asked long time ago...


see https://wiki.gnome.org/Apps/DejaDup/Help/Restore/WorstCase follow instructions under Restoring by Hand but instead of tar xf use tar tvf this is going to list the contents of the archive instead of extracting it