Hello.
I would like to know if I can choose between complete backup, incremental backup and differential backup, and how I have to do it.
Thanks and have a nice day
Hello.
I would like to know if I can choose between complete backup, incremental backup and differential backup, and how I have to do it.
Thanks and have a nice day
I found it myself. Solved
It would be nice if you could provide your solution here so that others with the same question can benefit from it.
What did you do to solve this? I’m having the same problem!
What problem are you actually having?
The impression I get is that Duplicati (2.0+) is using a compression technology that essentially incorporates incremental / differential backups in its core backup scheme, basically negating the need for separate choices between complete/incremental/etc. In other words, the backup fileset always represents a “complete backup”, but individual backup runs are in and of themselves incremental and/or differential as needed.
Hi @tophee, @19wolf and @drakar2007.
First of all, sorry for my delay (too much job).
Last week I read that Duplicati 2.0+ won’t do “incremental” or “differential” backups any more. Every backup is done as “complete”.
I’m not sure how, but my backups delay like incremental, but they are complete.
Duplicati goes a step further than most traditional backup programs.
In most traditional backup programs you can choose between making a full, differential or incremental backup. All backup methods have their own pro’s and con’s. Full backups are easy to restore from, but will cost a lot of storage. Incremental backups are relative fast (only new and changed data is written to the backup target), but restoring can be complex, because every incremental has to be played back after restoring from the most recent full backup.
Duplicati combines the advantages of all backup methods. It behaves as incremental when making a backup: only changed data is sent to the backup destination.
When doing a restore, all backups look like full backups have been performed every time: every restore point contains all files and folders of your backup source. When restoring a folder from your most recent backup, only one restore action has to be performed, in contrast to a “real” incremental backup.
In summary: Duplicati indeed won’t do incremental and differentials backups, it does this better and smarter.
The 1 Million dollars question, how reliable is the whole thing? Let’s say that I set backups to run daily at 20:00 with a setting to remove all versions older than one month. Let’s say that I need to recover my files after some 9 months and 21 days and 5 hours … Will it work? Will it work to restore the files into a new machine (new Windows installation)? Thank you.
You always will be able to restore your files.
Hope that helps
Thanks @cpo … I will be saving the backups files on remote Linux
server using ftp
, my question is it possible to verify the integrity of the backups server side? I mean on the Linux shell? And possibly list the backed up files?
I would think this is possible if you install duplicati at the remote server. You don’t configure any backup-jobs there - it’s just for integrity checks. You would have to use the cli over there to run a verify job on the server. You could also use the cli to run a list-files job, but i inagine this could be a lenghty task because the database for the job will still be on the local source running the backup. without this database the duplicati on the remote server would have to check everything direct from the backup files…
But i admit, further than this is a bit out of my knowlegde base.
You can set the --upload-verification-file
option to have it upload a JSON file which lists all the expected files and their hash values. There is a script here that can read this file and verify that it is all fine:
This is not possible (at least not on an encrypted copy) as that would allow the remote server to read your data. If the backup is not encrypted, you can read the dlist
files and extract the file-listing from that.
Alternatively, you need to install Duplicati on the server.
@kenkendk, thank you very much for the valuable information.