从Duplicity存档中提取文件夹


14

使用duplicity命令,我需要指定以下内容:

  • 指定要还原的文件夹
  • 指示从中还原的时间和日期
  • 指示要还原到的目标

如何使用duplicity命令指定这三件事?

Answers:


12

没错,即使它告诉“ --file-to-restore”,您也可以在“ foldername”中输入任何文件或文件夹路径(在其开头不带“ /”符号,例如“ temp / logs”)。以及该命令的任何“目标文件夹”(以“ /”符号开头,例如“ / temp / logs”)。

示例:我想将3天前备份的/ temp / logs还原到同一文件夹中:

duplicity -t 3D --file-to-restore temp/logs file:///backup/location /temp/logs

Sample2:我想将3天前备份的文件/temp/logs/app-error.log还原到同一文件夹中:

duplicity -t 3D --file-to-restore temp/logs/app-error.log file:///backup/location /temp/logs/app-error.log

请注意,您必须提供文件的完整目标路径。

Sample3:我的备份驻留在ftp server = my.ftp.server,其中user = root在location = my_backup,与#1相同:

duplicity -t 3D --file-to-restore temp/logs sftp://root@my.ftp.server/my_backup /temp/logs

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.