this post was submitted on 04 Jul 2023
150 points (98.7% liked)

Selfhosted

37811 readers
920 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

I have a home server that I’m using and hosting files on it. I’m worried about it breaking and loosing access to the files. So what method do you use to backup everything?

you are viewing a single comment's thread
view the rest of the comments
[–] GammaScorpii@lemmy.world 1 points 1 year ago (3 children)

TrueNAS zfs snapshots, and then a weekly Cron rsync to a servarica VPS with unlimited expanding storage.

[–] ThetaDev@lemmy.fmhy.ml 2 points 1 year ago (1 children)

If you use a VPS as a backup target, you can also format it with ZFS and use replication. Sending snapshots is faster than using file-level backup tool, especially with a lot of small files.

[–] GammaScorpii@lemmy.world 1 points 1 year ago (1 children)

Interesting, I have noticed it's very slow with initial backups. So snapshot replication sends one large file? What if you want to recover individual files?

[–] ThetaDev@lemmy.fmhy.ml 1 points 1 year ago

You can access ZFS snapshots from the hidden .zfs folder at the root dir of your volume. From there you can restore individual files.

There is also a command line tool (httm) that lists all snapshotted versions of a files and allows you to restore them.

If the snapshot you want to restore from is on a remote machine, you can either send it over or scp/rsync the files from the .zfs directory.

load more comments (1 replies)