Hey, you probably know about restic and borg for backups. They are pretty mature and very commonly used.

Rustic is a fully compatible reimplementation of restic in Rust and they do seem to have implemented a few improvements over restic. The developer even used to be a contributor on restic.

Is anyone here using it already? It looks super promising but I’d love to hear your opinion!

  • @[email protected]
    link
    fedilink
    English
    -21 year ago

    What’s the advantage of this over

    sudo tar -czvf /backupFile.tar.gz folder/to/backup/ gpg -o backupFile.tar.gz.gpg --symmetric backupFile.tar.gz

    • @[email protected]
      link
      fedilink
      English
      161 year ago

      Less storage space (since you don’t duplicate the data that has not been changed since the last backup), and ability to check different versions / restore / rollback.

    • Nine
      link
      fedilink
      English
      51 year ago

      Mostly it comes down to data types, disk space, and restores. Even if you’re doing incremental backups with tar it isn’t as fast, space efficient, or easy to restore, (in most cases) as something like restic, borg, etc…

      I have found when you just need something simple that just works everywhere then its hard to beat tar!