After using Déjà Dup for a while, I keep getting this error after every attempt at a backup:
Backup location is too small. Try using one with more space.
Could I delete some backups made of certain dates only? For example, could I delete all backups older than a month?
My backup folder contains 372 files, with names like:
duplicity-full.20121122T124053Z.manifest.gpg
duplicity-full.20121122T124053Z.vol100.difftar.gpg
duplicity-full-signatures.20121122T124053Z.sigtar.gpg
duplicity-inc.20121122T124053Z.to.20121129T151249Z.manifest.gpg
duplicity-inc.20121122T124053Z.to.20121129T151249Z.vol1.difftar.gpg
duplicity-new-signatures.20121122T124053Z.to.20121129T151249Z.sigtar.gpg
Can I delete some of these files safely?
Files associated with full and incremental backups:
A full backup contains all the data of that backup, and it does not depend on any other backups. It consists of at least three files:
duplicity-full.DATE.manifest
(just one)duplicity-full.DATE.volYYY.difftar
(one or more)duplicity-full-signatures.DATE.sigtar
(just one)If the backup is encrypted, these filenames will have a
.gpg
suffix.An incremental backup only contains the differences between a previous backup and itself, it depends on the previous backup, and of its previous backups, all the way until the chain reaches a full backup. It consists of three files:
duplicity-inc.DATE.to.DATE.manifest
(just one)duplicity-inc.DATE.to.DATE.volX.difftar
(one or more)duplicity-new-signatures.DATE.to.DATE.sigtar
(just one)To delete a backup, you can just delete the set of corresponding files. Remember that all subsequent dependent incremental backups will become invalid. You can do this manually, or you can use the
duplicity
command.Command overview of
duplicity
:Here's how to view a set of backups using the
duplicity
command:Here's how to remove backups older than one month, keeping any backups that are required for incremental backups in the last month:
Here's how to remove all backups except the last full backup set, and its incremental backups:
Here's how to remove all incremental backups except the last full backup set, and its incremental backups:
The manpage for the
duplicity
command is very informative, take a look.Thanks @Flimm : https://askubuntu.com/a/246694/676490 For users like me that tried
~/deja-dup
instead offile:///home/flimm/deja-dup
here a example for a usernameflimm