this post was submitted on 13 Jul 2025
75 points (98.7% liked)

Selfhosted

49500 readers
1095 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 2 years ago
MODERATORS
 

Lots of people have mentioned rsynx, restic, borgbackup, and others, but which would be best for backing up nextcloud, immich, and radicale? Do all of them have a method of automatically backing up every X days/weeks? Why use one over the other, what are the differences?

you are viewing a single comment's thread
view the rest of the comments
[–] un_ax@lemmy.sdf.org 9 points 3 days ago (1 children)

Here are some features off the top of my head that some backups software might have that other don't, or that you'll want to consider when choosing or making a system:

  • Application aware backups: E.G. DB Backups without shutting down the database. Could also be hypervisor/container awareness.
  • Restore: The ability to automatically restore files, systems, possibly to a new location.
  • Application aware restore/browsing: Being able to pull individual files from a backup, or accounts from a directory system
  • Backup copy: Automatically copying the backup to multiple destinations, disk or S3.
  • Retention: Automatically keeping a set number of backups, often including a number of weekly or monthly historical long term copies.
  • Backup Diffs: Keeping backups in a way that you only store the data changed rather than a full copy.
  • Compression: Compressing the stored data
  • Immutability: Keeping backups in a way that allows a (usually cloud) storage provider to lock files for X amount of days to prevent malicious deletions
  • Encryption: Encrypting your backups if they're kept on someone else's infrastructure or a non-secured area
  • Verification: Checking that the backups are intact and not corrupt.
  • Control panel: A single place to view the progress and completeness of all backups
  • Alerts: Notifications for failed backups, or hooks for successful backups for healthchecks.
  • Virus scans: Making sure a backups is malware-free before restore.
  • Retries: Ability to retry backups or copies in case of temporary outages before sending alerts

I'm not sure which of these exist in free software, my experience is mostly on enterprise software. A backups system can be as simple as a rsync/zip cron job or a full integrated system depending on what you need.

[–] Coelacanthus@lemmy.kde.social 2 points 2 days ago

And snapshot can benefit backup. Since some software need to be shudown to do backup, minimize the down time is important. The snapshot can make down time is almost stop and restart time, and the software can be online again and we can do backup on snapshot in background.