I’m planning to set up proper backups for my server, but I’m not sure which software to use. I’ve looked for solutions with encryption, compressed, incremental backups. These seem to be the best options:

Does anyone have experience with these, and if so, what was your experience?

EDIT 2023-12-28:

It seems most people are using Restic of which about half mention using a wrapper such as resticprofiles, creatic and autorestic.

Borg Restic Kopia
3 7 5
  • qaz@lemmy.worldOP
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    6 months ago

    Why did you choose this option instead of directly syncing it with restic’s rclone backend?

    • mlaga97@lemmy.mlaga97.space
      link
      fedilink
      English
      arrow-up
      4
      arrow-down
      1
      ·
      6 months ago

      An external hard drive is a lot faster than my internet connection and helps fulfill 3-2-1 requirements.

      • Unchanged3656@infosec.pub
        link
        fedilink
        English
        arrow-up
        4
        ·
        edit-2
        6 months ago

        Does it though? I had a similar setup in the past, but I did not feel good with it. If your first backup corrupts that corruption is then synced to your remote location. Since then I have two separate backup runs for local and remote. But restic as well with resticprofile. Remote is a SFTP server. For restic I am using the rclone backend for SFTP since I had some connection issues with the internal SFTP backend (on connection resets it would just abort and not try to reconnect, but I think it got improved since then)

        • mlaga97@lemmy.mlaga97.space
          link
          fedilink
          English
          arrow-up
          1
          ·
          6 months ago

          I only do automated copy to B2 from the local archive, no automated sync, which as far as I understand should be non-destructive with versioning enabled.

          If I need to prune, etc. I run will manually sync and then immediately restic check --read-data from a fast VPS to verify B2 version afterwards.