Answers:
没错,即使它告诉“ --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
duplicity -t 3D --file-to-restore <foldername> file:///backup/location <destination folder>
由于URL在本地目录之前,因此Duplicity进入还原模式。
-t 3D
3天前
如果您想查看更多信息,以下是根据版本提供的有用链接: