this post was submitted on 17 Jan 2026
72 points (98.6% liked)
Selfhosted
60210 readers
951 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:
-
Be civil.
-
No spam.
-
Posts are to be related to self-hosting.
-
Don't duplicate the full text of your blog or readme if you're providing a link.
-
Submission headline should match the article title.
-
No trolling.
-
Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Uuh what? Im not sure I follow. this feels more complicated rather that using some sort of service
A snapshot is like copying a the files in the snapshot to another location, while the original files remain as is and can be written to or read from.
As an example, if you have a folder, let's say
/important/secret/stuff, and you want to take a backup of it. You have to make sure that nothing is writing to those files while the backup is running, otherwise the backup risk being corrupted. (This is because if the backup starts to read the file, and halfway through the first part of the file changes, you now have a backuped file that half the old and half the new file).With a snapshop, you can "copy"
/important/secret/stuffto some other location, run a backup reading from this other location and then remove it. Any changes to the original files will not affect the backup since the backup is reading from the "copied" files (snapshot).So what you do is take a snapshot before running the backup, have the backup read from the snapshot and when it is complete, remove the snapshot.
Well there's software that can make it easier. Just an option. For ZFS specifically there's zfs_autobackup which I've got experience with and I haven't tried this but just found out about a Web UI that works with it: https://github.com/natankeddem/bale