未加密的重复

未加密的重复

我尝试使用不使用--no-encryption标志加密的 duplicity,尽管数据已存储且未加密,但我无法使用duplicity restore --file-to-restore选项恢复它(我收到错误test_file.txt not found in archive - no files restored.)。如果我尝试列出存档中的文件,我也收到错误gpg: decryption failed: secret key not available

显然,正如错误所言,我没有在 Ubuntu 上设置 GPG 密钥。有没有办法在duplicity不使用任何加密和 GPG 的情况下使用?我知道 duplicity 会加密签署备份,但是我如何才能禁用备份签署?

答案1

尝试关注。

创建备份

duplicity _data_to_be_backed_up_ file://_path_to_backup_ --no-encryption

恢复备份

duplicity restore file://_path_to_backup_ _restore_path_ --no-encryption

相关内容