How to keep two hard drives in sync and set the HDD that was cloned as the new backup target? #1730
Replies: 1 comment 7 replies
-
I think rsync might be what you are looking for. Vorta is a GUI wrapper for the mighty borg. It is open for features supporting the use of borg but not for implementing new backup tools.
There are big differences between your use case and the one borg/Vorta aim to support. You want to have two copies of your current file system state with one serving as backup storage. What you want is a file system sync tool. When we talk about a backup tool, we think of a tool that allows us to regularly make a backup by saving a snapshot of the current file system state which is then compressed and deduplicated with the existing snapshots. We store many snapshot of our data so that we can roll back to earlier versions.
This currently falls out of the scope of the project. We develop this voluntarily so we have to limit the features we have to maintain. BTW do full backups with Vorta requires it to be run as root which isn't supported at the moment. This is tracked in #1482. |
Beta Was this translation helpful? Give feedback.
-
I have a hard drive and clone it to a new hard drive. Because the former hard drive is likelier to fail, I'd like to use the latter as my in-use hard drive and the older one as my backup drive.
This means I'm not doing a full backup and then keep both disks in sync, I'd like to clone the HDD and then use the newer HDD in daily life while the older HDD is only used as a backup disk which is kept in sync with the one I use (I hope that makes sense).
Because I'd like to clone the hard drive, at the time of the first backup they should be identical and basically no data should be backed up. The drive is encrypted with VeraCrypt but that shouldn't be a problem.
I think this could be a very common use-case or it would be a common use-case if many people did full backups.
Hence this could become a feature request, even if it only means changing the documentation. Here's why I think that doing this makes a lot of sense for most macOS/Linux users: backups should be run often and be incremental or sync (Vorta?), have a GUI and be relatively easy to use rather than requiring long tinkering or the command-line (Vorta), be done with a tool that is FOSS (Vorta), and be transferred to a storage location that is likely to fail first rather than the other way around (or not?).
It would be best if Vorta could do all types of backup tasks - doing backups at all is already too difficult for most people so having to use a handful of different tools each for only some specific kind of sync or backup task just unnecessarily overcomplicates things when things could get unified into one best backup tool.
Asked about it here now: How to keep two local hard drives in sync on Linux?
Beta Was this translation helpful? Give feedback.
All reactions