Earlier quoted context omitted.
> set and forget for me and after 7 years Please tell me you verify your backups now and then?
This always gets repeated, sounds good and makes sense theoretically but in reality there's no good way to do that and it should be the job of a computer to that. Restoring one file from the backup, works but what if something else is corrupted? Restoring the system from the image, works but what if some directory is not in the backup and you don't see that while testing?
BorgBackup 2.0 supports Rclone – over 70 cloud providers in addition to SSH
71–80 of 124 posts
Re: BorgBackup 2.0 supports Rclone – over 70 cloud providers in addition to SSH
#72Earlier quoted context omitted.
I'd recommend having a look at Hetzner's "storage box" products. It's hard to beat 4€ a month for 1TB of SSH accessible storage.
SSH access on the storage boxes is quite limited: > It is possible to get interactive SSH access, but this access is limited. It is not possible to have interactive access via port 22, but it is possible via port 23. There is no full shell. For example, it is not possible to use pipes or redirects. It is also not possible to execute uploaded scripts. https://docs.hetzner.com/storage/storage-box/access/access-s... htt…
Re: BorgBackup 2.0 supports Rclone – over 70 cloud providers in addition to SSH
#73If you're looking for cheap online storage for your backups know this: A Microsoft 365 Single subscription comes with 1 TB of OneDrive space (Family subscriptions with 1 TB per person). I've been using it with restic + rclone successfully for years. It's not very fast, but works.
I'd recommend having a look at Hetzner's "storage box" products. It's hard to beat 4€ a month for 1TB of SSH accessible storage.
Re: BorgBackup 2.0 supports Rclone – over 70 cloud providers in addition to SSH
#74Earlier quoted context omitted.
Syncthing?
Syncthing is great, but it's peer to peer, and it requires block storage ("filesystem"). It also has no idea of point-in-time snapshots. Syncthing, is, as is unison, rsync, etc, basically a mirroring tool. By contrast, Borg, Restic, Kopia (anything else?) use object storage, aka binary blobs, like S3 or R2 or One Drive. They store both entire copies and small diffs on top of them, much like video codecs, or like git.…
Re: BorgBackup 2.0 supports Rclone – over 70 cloud providers in addition to SSH
#75Having both together makes easier to get this kind of use case.
Re: BorgBackup 2.0 supports Rclone – over 70 cloud providers in addition to SSH
#76Earlier quoted context omitted.
> set and forget for me and after 7 years Please tell me you verify your backups now and then?
Borgmatic runs consistency checks [1] once a month on all repositories and archives and I occasionally retrieve older versions for selected files (archives with --verify-data only once a year or whenever I feel the need - there's 9TB of data in the borg repo, which takes a bit to scan). Note though that borg is not my main backup, it is the fallback "3" in the 3-2-1 principle, where my primary data is a ZFS Raidz2 an…
Re: BorgBackup 2.0 supports Rclone – over 70 cloud providers in addition to SSH
#77Earlier quoted context omitted.
SSH access on the storage boxes is quite limited: > It is possible to get interactive SSH access, but this access is limited. It is not possible to have interactive access via port 22, but it is possible via port 23. There is no full shell. For example, it is not possible to use pipes or redirects. It is also not possible to execute uploaded scripts. https://docs.hetzner.com/storage/storage-box/access/access-s... htt…
At what point would they effectively be selling you a VM with 1TB of storage for 4 EUR a month? :D
Re: BorgBackup 2.0 supports Rclone – over 70 cloud providers in addition to SSH
#78I currently use rsync to backup up a set of directories on a drive to another drive and a remote service (rsync.net). It's been working great, but I'm not sure if my use-case is just simple enough where this is a good solution, or if I'm missing a big benefit of Borg. I do envy Borg's encryption, but the complexity of a new tool tied with the paranoia of me maybe screwing up all my data has had me on edge a bit to make the leap. I don't have a ton of data to backup, say about 5TB at the moment.
Re: BorgBackup 2.0 supports Rclone – over 70 cloud providers in addition to SSH
#79Earlier quoted context omitted.
Borgmatic runs consistency checks [1] once a month on all repositories and archives and I occasionally retrieve older versions for selected files (archives with --verify-data only once a year or whenever I feel the need - there's 9TB of data in the borg repo, which takes a bit to scan). Note though that borg is not my main backup, it is the fallback "3" in the 3-2-1 principle, where my primary data is a ZFS Raidz2 an…
You may also be interested in borgmatic's (beta) "spot" check, which compares your backup archive's files to your source files: https://torsion.org/borgmatic/docs/how-to/deal-with-very-lar...
Re: BorgBackup 2.0 supports Rclone – over 70 cloud providers in addition to SSH
#80It's a joy that the OSS world has so many active and really good backup tooling projects like Borg, restic and all the fancy wrapper/GUI tools. I use many of them in different environments for customer setups, desktops and my own cloud setup. It's essential to have several different options and each project has its own USP. A big thanks to everyone involved!