borgbackup
Selfhosted
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: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
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.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
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!
For local backup I like rsnapshot. It's a script that uses rsync and hard links to create incremental backups.
The thing about it is that it's super simple and easy to restore from since you just get a bunch of directories like "daily.0" and "daily.1". To restore you just find the files you want with standard tools like find and locate and just copy files out.
There are other more advanced tools like restic, borg, duplicacy, etc. I use things like that for the off-site backups (I backup the "daily.0" directory from my rsnapshot backups).
Restic is my tool of choice for deduplicated encrypted verifiable compressed incremental backups.
In that case, what would be better in terms of memory / CPU usage: dedup and compression at the filesystem level or disabling it and doing it at the tool level?
You can’t dedup/compress restic repos at fs level due to the encryption.
Nice thing is you get those even with „dumb“ targets that can‘t do those for you.