浏览具有重复性的备份文件?


10

我很早以前就备份了(已经旅行了几个月并且搬家了)。我的ubuntu安装中断,因此即使选择并排安装Windows,我也通过覆盖Windows分区来“修复”它。

但是,我需要的Windows中的关键文件已备份到外部驱动器。现在,我已经可以访问了,该如何在My Documents不记住确切的文件夹结构的情况下从我的双重备份中还原该文件夹?有没有一种方法可以“查看”所备份的目录?

Answers:


15

双重性可以选择

  1. 列出备份集 duplicity collection-status
  2. 列出备份集中的文件 duplicity list-current-files

例如,您可以知道哪些备份集可用:

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

然后列出5个月前备份集的文件:

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

最后,您可以使用:

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

希望这个问题能对您有所帮助,即使这个问题是很久以前提出来的...


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.