• 2 Posts
  • 48 Comments
Joined 2 years ago
cake
Cake day: April 27th, 2022

help-circle





  • foonex@feddit.detoDeutschland@feddit.de*Permanently Deleted*
    link
    fedilink
    Deutsch
    arrow-up
    0
    ·
    11 months ago

    Ich habe Freunde, die im Einzelhandel arbeiten. Ich gönne denen sehr, dass sie wenigstens einen festen Tag in der Woche auf jeden Fall planbar und regelmäßig frei haben.

    Wer es nicht schafft seine Einkäufe von Montag bis Samstag zu erledigen, hat die Kontrolle über sein Leben verloren.






  • tl;dr Duplicity does full or incremental backups, BorgBackup only does full backups but with deduplication.

    After the first backup with Duplicity, you can choose to do an incremental backup which will only store the data that has changed since the last backup. This saves time and disk space but you have to do slow full backups regularly. See question 3 of the FAQ.

    BorgBackup alway does a full backup. But it divides all data into chunks or blocks (don’t know what they call it exactly at the moment). It then hashes those chunks and stores them in a content-addressed storage layer. So it basically works like Git under the hood (plus encryption). If a chunk doesn’t change between backups it‘s already there and does not have to be stored again. A backup is always a full index of the data.

    With today‘s fast processors and hashing algorithms, a backup with Borg should be just as fast as an incremental backup with Duplicity. If you ask me deduplicated backups are just plain superior.

    Another tool that works like BorgBackup is Restic, which I prefer. Both are good choices that I would trust with my data.