i want to buy a few hard drives for backups.

What is the most reliable option for longetivity? i was looking at the wd ae, which they claim is fit for this purpose, but knowing nothing about hard drives, I wouldnt know if it was a marketing claim…

  • evasyncOP
    link
    12 months ago

    Im curious on why you are using zfs snapshots? (i never used them myself as I handle my backups with duplicity)

    • @Nogami
      link
      22 months ago

      Snapshots on the file system are instant and can be rolled back or opened in read only mode if you need an older version of the file.

      Sending a snapshot through replication is also much faster as the system just sends the snapshot itself which updates the files system in one pass by sending all of the changes made rather than having to compare file by file.

      For comparison, using rsync to update my backup with 250,000 files might take 20-30 minutes because it has to check every file on the source and destination to see if it has been modified. Sending a zfs snapshot is 15 seconds because it just sends the differences in one pass.

      • evasyncOP
        link
        12 months ago

        do you encrypt them?

        • @Nogami
          link
          22 months ago

          Yes they’re all encrypted with LUKS. Using unRAID as my base OS which handles most aspects of the process.