Best drives for family photo storage: HDD of SSD?

  • Hi all,

    I'm Mike and I'm new to omv.

    I've have a Synology DS107 that is disconnected for some years now and since then I store all our family photo's on 1 external drive and run a sync program to another external drive.

    But...... 3 weeks ago the drive with the original photo's died on me and the last time I synced was about a year ago.


    So....I have a Raspberry Pi 4 8GB laying in the shelve here doing nothing. And I would like to turn that into a NAS with 2x2TB external drives (both have the same files so they are a copy of each other (never know what RAID config that is)).

    I'm guessing I need a powered USB hub in order to avoid the drive underpowered issue.

    But my main question is: what drives should I buy??? HDD or SSD?

    I don't want to pay to much because then I could buy a new Synology or a Qnap NAS.


    Hope you have some good suggestions for me.

    Thanks in advance.

    Greetings from the Netherlands!

    Mike

  • chente

    Hat das Thema freigeschaltet.
    • Offizieller Beitrag

    And I would like to turn that into a NAS with 2x2TB external drives (both have the same files so they are a copy of each other (never know what RAID config that is)).

    Don't use Raid, sync with rsync regularly.

    I'm guessing I need a powered USB hub in order to avoid the drive underpowered issue.

    Yeah.

    But my main question is: what drives should I buy??? HDD or SSD?

    If you are looking for reliability, a good brand and a model prepared for NAS is more important than whether it is an SSD or HDD. Western Digital Red are the ones I like the most but there are others.

    I don't want to pay to much because then I could buy a new Synology or a Qnap NAS.

    The price of hard drives is irrelevant in this sense, Qnap or Synology NAS sell them without drives.

  • what do you mean by "don't use RAID"? 8|

    Isn't it mend to copy have a mirrored drive and to check if file get corrupt and get good once from the mirror drive? :/

    If I shouldn't use RAID but just sync regularly I don't need a NAS correct? That I can do with the way I did it up to now.

    I just want that file corruption check and automated backup done automaticly by the system.

    • Offizieller Beitrag

    1. Raid is not a backup. Search that on google. You will realize that you need a backup even if you use Raid.

    2. Raspberry only allows you to connect disks via USB. USB Raid is not a good idea in general and OMV does not allow it.

    3. If what you are looking for is to avoid file corruption, mdadm does not do it, you need to use a COW type Raid, like ZFS or BTRFS does.

    • Offizieller Beitrag

    RAID is not backup

    5 Simple Reasons Why RAID Is Not a Backup
    “Can I use RAID in place of backups?” I see this question posted throughout the web in one form or another. After learning how RAID facilitates redundancy,…
    www.arcserve.com


    RAID does not prevent files from being corrupted.


    I would use one drive as the main storage and than the other one for the first backup (read about 3-2-1 backup strategy)

    As backup you can use different methods, depending what you want.

    Versioning

    De-duplication

    Encryption


    Simplest is rsync. Next is rsnapshot. Then comes borgbackup, Duplicati or restic (and many others)

  • Agreed. RAID does not prevent against corruption. RAID is about 3 things: high availability, protecting against down time in the event of a drive failure. If the array is not a RAID 1, it also does bandwidth aggregation allowing the array to operate faster than a single drive and pooling of space to give a volume larger than a single drive.


    RAID 1 is a mirror copy, so yes there are 2 copies of the data, but it is not a backup. anything that happens on one drive happens on the other at the same time. ...not a backup, but a failed drive does not bring everything down.


    Some filesystems can offer a little bit of bitrot protection, but realistically, it is not something that rears it's ugly head often, and they still don't negate the need for a backup, so the focus should be a backup of important data.


    If you want to follow a good backup rule like we have to follow in the Film and Video industry, it is a simple rule that we call the 321 rule. 3 copies of the data, on 2 different storage mediums, 1 of those storage mediums in a different location "off site". The important part is the duplicate copy, preferably in a different location. The 3rd copy for us is about speed of restoring a file since we have 2 independent live copies.

  • Hi everyone,

    thanks for your reply's. And what I get out of it is that your basicly saying that I don't need a NAS for the purpose I thought I needed it for.

    I just need to continue the way I did it (though I only had 2 copy's instead of 3, still I had one drive at home and one drive in my parents house) just need to sync more often.


    Are there also Windows programs that can check the file status (corrupt or not) and get the healthy file from the second drive and copy it to the first drive?

  • Hi everyone,

    thanks for your reply's. And what I get out of it is that your basicly saying that I don't need a NAS for the purpose I thought I needed it for.

    I just need to continue the way I did it (though I only had 2 copy's instead of 3, still I had one drive at home and one drive in my parents house) just need to sync more often.


    Are there also Windows programs that can check the file status (corrupt or not) and get the healthy file from the second drive and copy it to the first drive?

    Nothing I am aware of in Windows that will intelligently check for corruption, as corruption can mean several things. A corrupt files can sometimes even be opened but the data inside may not be correct or complete. For example, you may have at some point opened a jpeg image that only displays part of the image. The file can be opened, but the image is not complete or is "garbled" part way down the picture. In this case, the file header/container is ok, but the enclosed data is bad. In a case like that there is no way to determine if the image is right or not without looking at it.


    There are sync programs like free file sync or beyond compare that can do a bitwise comparison, but once again without looking at the file, or image as mentioned in the example, the program does not know which one is correct.


    As for not needing a NAS, It is essentially just a file server and it still is a good place to use as a repository for your data and can be configured to automatically back up from the repository to a drive that you plug in occasionally or even to do a remote backup to another off site NAS with some fancy internet connection configuration between the two.


    It is up to you if you want to use one in such a way, but the key once again is backups of the important stuff.


    Once again though, file corruption on a file that is not being actively used is rare, if the medium that the file is stored on is sound. Corruption is more likely during a bad save, copy or move. I have files on my OMV system that are 20 or more years old, copied from smaller/older drives every time I have replace the drives with newer/larger ones, that I can still open and are still fine. I do tend to replace my drives every 5 to 7 years as a preventative maintenance measure, and to increase the available storage as drives get larger and the accumulated data increases.

  • check the file status (corrupt or not)

    I thought rsync did that, but I don't see the option. However, it would be trivial to script something that gets a known good hash, saves it to a file along with the path, then uses that saved information to check the files. "rhash" is the lastest hasher I tried, it was stdout friendly: https://github.com/rhash/RHash "7z.exe" can compute a few hashes. par2.exe can create a verification stub but at a much, much higher cost of disk space.


    I thought rsync did ~"If file bad, overwrite with good"... I would of sworn I've done this with rsync, I'm 99.9% positive I wrote a script that did this once upon a time.

    • Offizieller Beitrag

    In my opinion, the most reliable and best protection available for file corruption and bit rot is ZFS in a mirror. I've actually tested it for this purpose. However, as it is with any form of RAID, backup is still required. Nothing of any value can be trusted to a single platform.

    This explains backup considerations in an easy to understand format, -> Backup and Backup Strategy

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!