There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

What is your preferred method for backing up several TB of data?

What storage software could I run to have an archive of my personal files (a couple TB of photos) that doesn’t require I keep a full local copy of all the data? I like the idea of a simple and focused tool like Syncthing, but they seem to be angling towards replication.

Is the simple choice to run some S3-like backend and use CLI or other client to append and browse files? I’d love something with fault tolerance that someone can gradually add disks to. If ceph were either less complicated or used less resources I’d want to do that.

spez_ ,

Restic with Backrest: forum.restic.net/t/…/7069

Although I use ResticProfile atm with RClone to sync to backblaze B2

Dremor ,
@Dremor@lemmy.world avatar

You could run a WebDAV server, like Nextcloud.

On windows it supports thin sync (meaning that it keep a reference to the file instead of the whole file), on Linux not yet, as it is still in alpha (but you can just connect it as a remote disk and be done with it. That’s how I do with mines).

If you don’t want the whole Nextcloud, there are standalone cli WebDAV servers.

atzanteol ,

Sounds like something like “git annex” is what you’re looking for?

I use this to manage all my photos. It lets you add binaries and synchronize then to a backend server (can be local, can be s3, back blaze, etc).

You can then “drop” files and it ensures a remote exists first. And when you drop the file your still see a symlink of it locally (it’s broken) so that you know it exists.

My workflow is to add my files, sync them to both a local server and b2, then I drop and fetch folders as i need (need disk space? “git annex drop 2022*”, want to edit some photos? “git annex get 2022_10_01”.

computergeek125 ,

What platform?

Another user said it - what your asking for isn’t a backup, it’s just data transfer.

It sounds like you’re looking for a storage backend that hosts all your data and can download data to the client side on the fly.

If your use case is Windows, Nextcloud Desktop may be what you looking for. I have a similar setup with the game clips folder. It detects changes and auto uploads then, while deleting less recently used data that’s properly server side. This feature might be in Mac but I haven’t tested it.

Backup wise, I capture an rsync of the nextcloud database and filesystem server-side and store it on a different chassis. That then gets backed up again to a USB drive I can grab and run.

Nextcloud also supports external storage, which the server directly connects to: docs.nextcloud.com/…/external_storage_configurati…

skilltheamps ,

that doesn’t require I keep a full local copy of all the data

If you don’t do that, the place that you call “backup” is the only place where it is stored - that is not a Backup. A backup is an additional place where it is stored, for the case when your primary storage gets destroyed.

jkrtn OP ,

“Local” as in the machine I am using to work on, which has a 256 GB SSD. Not as in “on-site” and “off-site.”

computergeek125 ,

In the IT world, we just call that a server. The usual golden rule for backups is 3-2-1:

  • 3 copies of the data total, of which
  • 2 are backups (not the primary access), and
  • 1 of the backups is off-site.

So, if the data is only server side, it’s just data. If the data is only client side, it’s just data. But if the data is fully replicated on both sides, now you have a backup.

There’s a related adage regarding backups: “if there’s two copies of the data, you effectively have one. If there’s only one copy of the data, you can never guarantee it’s there”. Basically, it means you should always assume one copy somewhere will fail and you will be left with n-1 copies. In your example, if your server failed or got ransomwared, you wouldn’t have a complete dataset since the local computer doesn’t have a full replica.

I recently had a a backup drive fail on me, and all I had to do was just buy a new one. No data loss, I just regenerated the backup as soon as the drive was spun up. I’ve also had to restore entire servers that have failed. Minimal data loss since the last backup, but nothing I couldn’t rebuild.

Edit: I’m not saying what your asking for is wrong or bad, I’m just saying “backup” isn’t the right word to ask about. It’ll muddy some of the answers as to what you’re really looking for.

jkrtn OP ,

Yes, I do see that. I’m definitely getting answers to a question I didn’t intend. I was hoping for more of an rsync but that something which also provides viewing and incremental backups to an offsite. I don’t know how to phrase that, and perhaps for what I want it makes more sense to have rsync/rclone to copy files around and something else to view.

skilltheamps ,

It is not that easy to understand what you want, to me it reads like you want something like Nextcloud - i.e. your own little cloud, where you can put all your stuff, and view it through the webbrowser or the nextcloud apps, and also keep selected parts of your stuff in sync with your devices (or automatically upload photos take with your smartphone for example).

Backup of Nextcloud (or whatever you want to use) is a seperate topic. Any incremental backup tool would apply though, so there’s much to choose from. I personally use btrbk which uses Btrfs Send+Receive to push incremental snapshots to an offsite server.

Alpha71 ,

Not.

hperrin ,

All of my machines back up to my home server’s RAID over WebDAV with Nephele.

Then every few days I’ll manually sync them to a server at my parents’ house with a single huge HDD using rsync. I do this manually so that if anything happens to my home server (like ransomware) it doesn’t mirror destroyed data.

Since the Nephele share is just WebDAV, I can mount it locally and move things into it that I don’t want local anymore.

I created Nephele, and I just finished writing an encryption plugin. I wrote it because I’m also going to write an S3 adapter. That way, you can store things in S3, but they’ll be encrypted, so Amazon can’t see them.

blackbirdbiryani ,

Wouldn’t syncing automatically every few days give you the same protection though?

jkrtn OP ,

Protection against if it happens and they have not noticed within those few days. Probably especially important if they leave the system running while on vacation.

hperrin ,

I’m assuming I would notice, because none of my services on the machine would work anymore.

jkrtn OP ,

This is really cool. I ended up trying something similar: serving from a ZFS pool with SeaweedFS. TBD if that’s going to work for me long term.

I would definitely be able to manually sync the SeaweedFS files with rsync to another location but from what I see it requires me to use their software to make sense of any structure. I might be able to mount it and sync that way, hopefully performance for that is not too bad.

Syncing like that and having more control over where the files are placed on the RAID is very cool.

boblemmy ,
GBU_28 ,

Rsync is liiiiifffeee

anzo ,

Rclone.org is poetry then ;)

JakenVeina ,

rsync, for sure. That’s what I used when I had to migrate a 10TB datastore to a new machins.

const_void ,

rsync and another hard drive

thagoat ,

Hetzner storage box, rsync and a bash script

knobbysideup ,
@knobbysideup@sh.itjust.works avatar

Borg. With rsync.net if you want to keep an off-site.

iturnedintoanewt ,
@iturnedintoanewt@lemm.ee avatar

Is there a decent UI for borg, or is it all CLI?

PrecisePangolin ,

Pika backup seems to be mentioned a lot.

piefedderatedd ,

There's https://borgwarehouse.com/ Haven't found the time to test it but looks interesting.

maxwellfire ,

On linux and Mac there’s also vorta.borgbase.com which is pretty good

Decronym Bot , (edited )

Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I’ve seen in this thread:

Fewer Letters More Letters
Git Popular version control system, primarily for code
NAS Network-Attached Storage
RAID Redundant Array of Independent Disks for mass storage
SSD Solid State Drive mass storage
ZFS Solaris/Linux filesystem focusing on data integrity

5 acronyms in this thread; the most compressed thread commented on today has 2 acronyms.

[Thread for this sub, first seen 17th Feb 2024, 23:55] [FAQ] [Full list] [Contact] [Source code]

Everythingispenguins ,

Punch cards. Is it the best no but no one is going to bother to steal my data. Encryption through inconvenience

jkrtn OP ,

Do a riffle shuffle to make them even more secure!

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • [email protected]
  • lifeLocal
  • goranko
  • All magazines