16

I'm running 11.10 and did a backup with the default program titled "Backup" (Deja Dup).

How can I know that it backed up my files correctly / completely?

Jorge Castro
  • 71,754

3 Answers3

9

Update Deja-dup to 24.x or latest release.

In later version of 23.x they have added integrity check feature.

Have a look this link. https://bugs.launchpad.net/deja-dup/+bug/1055356

After every backup, we make a small check to confirm we can restore a test file. And every two months, we make a more intensive check.

Jorge Castro
  • 71,754
5

Restore the data, either in a VM or test home directory.

Panther
  • 102,067
1

as bodhi.zazen explained, the best way would be to restore the backup on a test environment. Then, I suggest you to store somekind of checksum database of your backups after the restoration test

Douda
  • 40
  • Actually, you should create the checksum database 'before' restoring. If restoring succeeds, you know your checksum file is valid. This is for the case your backup actually breaks while or after restoring. Create md5 checksums recursively with md5deep -r -l DIR > DIR.md5sum. Check all .md5sum files of a directory with md5sum -c --quiet *.md5sum. – sulai Feb 07 '16 at 22:21