Questions tagged [duplicity]

Duplicity is a software suite that provides encrypted, digitally signed, versioned, remote backup of files using the rsync algorithm.

Duplicity creates backups of directories by producing encrypted tar-format volumes and uploading them to a remote or local file server. It uses librsync to create space efficient incremental archives that only record the parts of files that have changed since the last backup, as well as GnuPG to encrypt and/or sign the archives to make them resistant to spying and/or modification by the server.

Duplicity can be used with specific backends to connect to different services. So far SSH/SCP, local file access, rsync, FTP, HSI, WebDAV, Tahoe-LAFS, and Amazon S3 backends have been written.

Currently Duplicity supports deleted files, full Unix permissions, directories, and symbolic links, FIFOs, and device files, but not hard links.

47 questions
23
votes
7 answers

Replacing Dropbox with: Amazon S3 + SSL + GPG/TrueCrypt + Mounting on OSX ??

So, right now we're using Dropbox to share various data files around between approximately 10 Mac OS X systems. However, we already have an S3 account and everyone on the lowest Dropbox plan of $10/month seems too expensive. We'd like to avoid any…
13
votes
2 answers

Browse files backed up with duplicity?

I backed up a long time ago (have been traveling for a few months and moving) with duplicity. My ubuntu installation broke, so I 'fixed' it by having it overwrite my Windows partition, even though I selected to install it side-by-side…
Alec
  • 288
11
votes
2 answers

Progress bar/% in duplicity?

I'm starting to experiment with Duplicity for my backups and found that it lacks an option to show a progress bar or percentage, it just shows the files to be backup. Is there a way to get a progress bar based on total data to be uploaded/current…
Gabriel
  • 3,705
10
votes
2 answers

including files in a symlink directory when backing up with duplicity

I'm backing up using Duplicity, great tool. I'm unable to include files in the backup that are within a directory that is a symlink. Using the following: duplicity --include /var/www/**/current --exclude '**' duplicity will only backup…
Rob
  • 729
9
votes
1 answer

How to go through this duplicity stalled connection?

I am trying to set up backups via duplicity. Here is the use case: ~$ duplicity --encrypt-key CA17A4FA --progress --ssh-options="-l 8192" ~/Documents/ ssh://my.distant.host/save/docs/Documents Local and Remote metadata are synchronized, no sync…
9
votes
1 answer

Ignoring folder pattern in deja-dup

In Ubuntu (disco), how do I tell deja-dup to ignore a folder pattern? I want for example to make it skip any folder, in any path, that is named node_modules. When I try to add folders to the ignore list, it won't allow me to type something (like…
rickb
  • 93
7
votes
2 answers

How to change the passphrase of a duplicity backup?

How to change the passphrase of a duplicity backup? I tried to just provide a new one when doing a backup but was faced with an error. GPGError: GPG Failed How should I proceed to change the passphrase?
M. Toya
  • 295
7
votes
1 answer

Restore only changed files with duplicity

I've a problem. Duplicity is perfect for backups, I love so much that can be able to do incremental diff tars, but ... when restoring duplicity seems don't apply same concept. Basically I need to restore only changed files (obviously after a full…
Ventura
  • 71
6
votes
1 answer

How to show differences between two duplicity backups?

I want to be able to see the differences between two duplicity backups. I know there is the command verify but it only lists files which differ from the latest backup. If I try list-current-files with different backup dates and then doing a diff it…
5
votes
3 answers

Duplicity restore failing: No secret key

I'm setting up a backup from a local machine to a remote server. I generated gpg keys on the local machine and ran a test backup with: PASSPHRASE="MyGPGPassphrase" duplicity --encrypt-key KeyID test scp://user@server/path The backup seems to work…
Pabi
  • 231
4
votes
1 answer

Duplicity, duply - Volume was signed by key x, not y, Task 'RESTORE' failed with exit code '22'

I have an issue when trying to restore brand new test backup, just created with duply full option. I get an error: Volume was signed by key E1B0ABA5CC893257, not CC893257 11:10:50.210 Task 'RESTORE' failed with exit code '22'. The backup was…
okrutny
  • 143
3
votes
1 answer

Why does duplicity require the GnuPG passphrase when rotating backups?

I am using duplicity 0.7.05 to periodically backup a directory that resides on a Linux system, using a GnuPG key pair with an encrypted private key. Since the public key is not encrypted, the passphrase is not required for the backup process, but it…
thkala
  • 2,129
3
votes
1 answer

Duplicity can only restore as root on OS X

When I try to list or restore files from my duplicity backup in S3 on my OS X machine, I run into a permissions error: Traceback (most recent call last): File "/usr/local/bin/duplicity", line 1411, in with_tempdir(main) File…
3
votes
1 answer

Are duplicity's temporary files and cache encrypted?

Duplicity can often use a lot of disk space for temporary files and the archive cache. It's tempting to use the --archive-dir and --tempdir arguments in order to store these on the same disk where the backups are placed, but I can't find any…
Ivanna
  • 133
3
votes
1 answer

Duplicity writes files to ~/.cache despite having specified --archive-dir

My duplicity command looks like sudo duplicity --tempdir /media/scratch/tmp --no-encryption --archive-dir /media/scratch/duplicity --exclude /media/nas/backup --exclude /proc --exclude /sys --exclude /media/scratch/duplicity --exclude…
fpnick
  • 616
1
2 3 4