Slashdot Mirror


Ask Slashdot: Best File System For the Ages?

New submitter Kormoran writes: After many, many years of internet, I have accumulated terabyte HDDs full of software, photos, videos, eBooks, articles, PDFs, music, etc. that I'd like to save forever. The problem is, my HDDs are fine, but some files are corrupting. Some videos show missing keyframes and some photos are ill-colored. RAID systems can protect online data (to a degree), but what about offline storage? Is there a software solution, like a file system or a file format, specifically tailored to avoid this kind of bit rot?

59 of 475 comments (clear)

  1. Stone tablet and chisel by Anonymous Coward · · Score: 5, Funny

    I prefer to chisel the 0s and 1s into a stone tablet. Very secure, no bit rot.

    1. Re: Stone tablet and chisel by Anonymous Coward · · Score: 2, Informative

      Damn beat me to it!
      Stone is secure!

      Dude, if your hard drives were fine, your files wouldn't be corrupted. Keep RAID backups if you want a solution. The file system doesn't make a Fing difference.

    2. Re: Stone tablet and chisel by I'm+just+joshin · · Score: 4, Funny

      I give you the 15
      *drops one*
      10 commandments...

    3. Re:Stone tablet and chisel by DontBeAMoran · · Score: 2

      What about bit fungus?

      --
      #DeleteFacebook
    4. Re:Stone tablet and chisel by magarity · · Score: 4, Funny

      Yes, weathering. That is why casting in bronze is vastly superior to mere chiseling in stone.

    5. Re: Stone tablet and chisel by laie_techie · · Score: 2

      You mean the two commandments, for those who still use Base-10 and not binary.

      When the Jews asked Jesus which of the commandments was the most important, he condensed them into Love the Lord thy God with all thy heart and Love thy neighbor as thyself. If you obey these two commandments you won't break the spirit of the traditional 10 given to Moses.

  2. bit rot by Anonymous Coward · · Score: 5, Informative

    zfs

    1. Re:bit rot by Narcocide · · Score: 5, Insightful

      It's pretty sad that in this day and age, only one person has highlighted the relevance of ZFS here, and they're an AC. Someone mod parent up. RAID is borderline necessary if you don't have multiple backups, (to recover from in the event of random corruption caused by gamma rays from outer space or a butterfly flapping their wings on another continent or whatever) but so far as I know, only ZFS has built-in checksumming to detect/prevent the data corruption in the first place.

    2. Re:bit rot by tlhIngan · · Score: 4, Informative

      It's pretty sad that in this day and age, only one person has highlighted the relevance of ZFS here, and they're an AC. Someone mod parent up. RAID is borderline necessary if you don't have multiple backups, (to recover from in the event of random corruption caused by gamma rays from outer space or a butterfly flapping their wings on another continent or whatever) but so far as I know, only ZFS has built-in checksumming to detect/prevent the data corruption in the first place.

      No, RAID Is not sufficient to prevent bit-rot. In fact, RAID can accelerate it. You see, using a redundant mode like 1, 5, 6, most controllers (software and hardware) will only read enough disks to get the data, 1 drive in the case of RAID1, N-1 for RAID5 and N-2 for RAID6 (the non-parity ones, to save a parity calculation). But the drives can return bit errors - it's rare, but it does happen (there's a undetectable fault error rate, something along the lines of 1 in 10^20 bytes read or so will have an undetected error). And this the RAID controller will happily return to you since it didn't check the redundant drives to verify correctness. And it's possible it gets written back corrupted, thus causing corruption.

      You really need something like ZFS which puts a checksum on every file and verifies it, so if it does get an error it can resolve it.

    3. Re:bit rot by __aaclcg7560 · · Score: 4, Informative

      You really need something like ZFS which puts a checksum on every file and verifies it, so if it does get an error it can resolve it.

      ZFS also has its own flavors of RAID 1/5/6.

    4. Re:bit rot by MightyMartian · · Score: 4, Informative

      Whose to say zfs will be around in a few decades?

      The real solution here is relatively frequent backups, multiple copies in different filesystem and physical formats (ie. flash, hard drive, optical). Over time you just keep moving your file store to the new mediums. I have files that are over twenty five years old now, some of them coming from DOS and Windows 3.1, others from my old original Slackware 3 installs. Along the way some of those files have been on CD-Rs, DVDs, early USB thumb drives, various hard drives running everything from FAT, FAT32, ReiserFS, HPFS, NTFS, ext2 and ext3. And I'll keep on doing that until I drop dead, and I'll leave it up to my family to decide whether they want to keep any of the documents, pictures, music files, videos and so on that I've been collecting.

      At no point do I ever assume a mere file system sitting on one physical and/or logical volume is ever going to do the job of keeping my files available over the long haul. RAID and file systems in all their glory are not intended for that. Multiple physical copies at multiple locations on multiple types of media, that's the only real way to assure your files remain accessible and safe over time.

      --
      The world's burning. Moped Jesus spotted on I50. Details at 11.
    5. Re:bit rot by davidwr · · Score: 3, Insightful

      Tell me about a usable linux distribution that has a fully working zfs implementation.

      I should have an answer for you shortly. Say, in half a decade or so, give or take.

      --
      Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
    6. Re:bit rot by shellster_dude · · Score: 3, Informative

      ZFSonLinux works just fine. I've got a huge Debian based NAS running it. Sure, you can't really boot to it, but who cares? I can reinstall the base OS, the irreplaceable part is my personal files which are on a ZFS RAIDZ2 with an encrypted cloud backup.

    7. Re:bit rot by fluffernutter · · Score: 2

      I tried ZFS once on a backup server, my system crumbled under the load. Did the same config with ext4 and it has been running fine since.

      --
      Laws are rules for the court, but merely a bottom bar to hit for life. Think beyond laws in your actions always.
    8. Re:bit rot by Spazmania · · Score: 4, Informative

      He said a filesystem for the ages. While it has wonderful features, ZFS isn't even a filesystem for this age, let along ages to come. FAT32 and ISOFS are your best bets for being readable 20 years from now.

      Bear in mind that your hard disk checksums each block and returns an error if the block is uncorrectable upon read rather than give you bad data. So, if you're getting bit rot at all then you have a hardware problem.

      With or without a hardware problem you want to be able to recover your data. The answer is par2, such as parchive or QuickPar. Par2 uses a Reed-Solomon code to take a set of source files and produce a set of recovery files such that the original files can be checked for correctness and up to N original files can be corrected where N is the number of recovery files created.

      And that's your answer. A filesystem like FAT32 or ISOFS that's likely to still be implemented in future OSes and a recovery files which let you rebuild anything that suffers from bit rot.

      --
      Moderating "-1, Disagree" is simple censorship. Have the guts to post your opinion.
    9. Re:bit rot by nmb3000 · · Score: 4, Insightful

      (there's a undetectable fault error rate, something along the lines of 1 in 10^20 bytes read or so will have an undetected error)

      I just want to call this out because it's so important. That number, 10^20, sounds big, but considering the size of modern drives it's really not.

      Randomly picking the WD 8TB Red NAS drive (WD60EFRX), which is designed for consume RAID as an example:

      The spec sheet says the URE (unrecoverable read error) rate is at worst 1 x 10^14 per bits read. However, that drive holds 8 x 10^12 bytes! If you were to read every single byte there is about a 64% chance that at least 1 bit is read incorrectly.

      (8 x 8 (bits per byte) x 10^12) / (1 x 10^14) = 64,000,000,000,000 / 100,000,000,000,000 = 0.64

      Correct my math if I'm wrong, but this should make anyone think twice about using any kind of RAID as a "backup" solution. If you have a disk fail you have a better than 50/50 chance of introducing corrupt data during the rebuild process!

      Frankly, ZFS-style checksumming is the future of files systems. It has to be for any data you care about.

      --
      "What do you despise? By this are you truly known." --Princess Irulan, Manual of Muad'Dib
      /)
    10. Re:bit rot by ShanghaiBill · · Score: 2

      Whose to say zfs will be around in a few decades?

      Why wouldn't it be? The only things that could wipeout all implementations of a widely used format like ZFS would be nuclear war or an ELE asteroid strike. In either event, reading disk drives would be the least of your problems.

    11. Re:bit rot by grcumb · · Score: 4, Funny

      (there's a undetectable fault error rate, something along the lines of 1 in 10^20 bytes read or so will have an undetected error)

      I just want to call this out because it's so important. That number, 10^20, sounds big, but considering the size of modern drives it's really not.

      Vhrist, you guys. Why so p[aranoid? FAT has been workking just fine since day one, and there's not reason to beliveve it won't keep workingn that way for

      --
      Crumb's Corollary: Never bring a knife to a bun fight.
    12. Re: bit rot by dannys42 · · Score: 2

      Multiple copies may be one solution, but it introduces another problem that doesn't have an elegant solution... you need a tool that can verify the integrity of your data (across the multiple copies). How do you choose which one is "correct" when you migrate and copy to a new system? In addition, how are you sure that any given copy is actually complete? What if you want to permanently delete a file from your archive?

      I mitigated some of these problems for my photo library by using version control software. But they're not really designed for this purpose. Git runs into memory issues when you have repositories that run up to tens of GB. Subversion works, but you end up with a duplicate copy of all your files in your work tree.

      There really isn't a very good archival solution I've found so far that allows you to be sure about the integrity of your data in the long term when talking even at the 100GB level, let alone the multi TB level.

    13. Re:bit rot by Spazmania · · Score: 4, Informative

      "ZFS isn't even a filesystem for this age" - WTF does that even mean?

      It means that even back when FAT was a johnny come lately it already had greater market penetration than ZFS. With decades behind it and broad market penetration today, there's good reason to believe it won't vanish with the advent of the next development in filesystem architecture. ZFS is likely to be a blip on the radar, a pause before the next innovation. Not what you want for an archival format.

      Bit-rot is an issue inherent to any storage medium

      Bit rot, aka corrupted data, is not inherent to correctly operating hardware. As implemented, you'll see tens of thousands of unreadable blocks on a hard disk before you see a single one in which data has been undetectably corrupted. Every single sector gets a checksum in hardware and if the checksum does not pass you get the famous Abort Retry Ignore. For most storage you get Forward Error Correction coding so that some number of bit errors can be corrected on read before having to throw an error.

      When you see bit rot, the storage media is usually not at fault. More often the data passes through faulty non-parity ram, a noisy memory bus or an overheated controller and gets corrupted on its way to storage rather than getting corrupted at rest on the storage. It died when you used an overclocked piece of garbage to copy it from an old hard disk to a newer, bigger one.

      --
      Moderating "-1, Disagree" is simple censorship. Have the guts to post your opinion.
    14. Re:bit rot by Spazmania · · Score: 3, Informative

      Bit-rot is an issue inherent to any storage medium

      Here's a quick article which explains how hard disks use error correcting codes so that the user-level experience is no bit rot but rather many many read failures before even a single block of undetectably corrupted data. Next time you can know what you're talking about.

      http://www.pcguide.com/ref/hdd...

      --
      Moderating "-1, Disagree" is simple censorship. Have the guts to post your opinion.
    15. Re:bit rot by AaronW · · Score: 2

      I have been using XFS for many years and have found it to be quite reliable and have been able to recover data when the underlying data store got corrupted. It's also quite mature in Linux and relatively fast. My last experience with BTRFS was a failure (several years ago) due to it being incredibly slow when there were thousands of small files in directories. Once ZFS is stable in the Linux kernel I'll give it a try.

      --
      This post is encrypted twice with ROT-13. Documenting or attempting to crack this encryption is illegal.
    16. Re: bit rot by ssam · · Score: 2

      Only the parity modes (raid 5,6). BTRFS raid 0,1,10 work great and give better protection than traditional raid thanks to the checksumming.

    17. Re:bit rot by pnutjam · · Score: 2

      but rot.. Sounds serious...

  3. Terabytes over decades on NTFS by DogDude · · Score: 2, Interesting

    I've got somewhere between 20-30 TB that has been accumulating for more than 20 years on NTFS, and I've never seen any examples of "bit rot". My files today are identical to what they were 20+ years ago. I have to wonder what kind of filesystem that the poster is using.

    --
    I don't respond to AC's.
    1. Re:Terabytes over decades on NTFS by Narcocide · · Score: 2

      Not a single example in 30TB over 20 years? I think you should check again.

    2. Re:Terabytes over decades on NTFS by Narcocide · · Score: 5, Insightful

      Schrodinger's bit rot. If you never look in the box again after putting the cat in it, you can pretend it lived forever.

  4. Clay pots in the desert by DalM · · Score: 2

    The only historically tried and proven method of storing information for the long term.

  5. HDDs are NOT fine by archer,+the · · Score: 2

    If the bits on your drive are changing while the drive is offline, that isn't a filesystem issue. A filesystem issue would be if your OS wrote the wrong information to the drive, but that can't happen with an offline drive.

  6. RAID by buchner.johannes · · Score: 3, Informative

    RAID systems can protect online data (to a degree), but what about offline storage?

    Still RAID is a good choice for your redundancy of choice.

    Or paper: http://ollydbg.de/Paperbak/#1

    --
    NB: The message above might reflect my opinion right now, but not necessarily tomorrow or next year.
  7. Error correction codes. PAR2, btrfs, partitions,VM by raymorris · · Score: 5, Informative

    The magic phrase to Google is "error correction codes" (ECC).

    PAR2 uses Reed-Solomon error correction. parchive is the ECC file format specification, for Linux you will want PyPar or par2tbb, and on Windows you use a GUI called QuickPar.

    Btrfs can be set to use ECC on a single disk.

    You can slice a single disk into partitions and then use RAID1 or LVM mirroring, or RAID5 or RAID6. LVM can alao be useful to divide (and combine) any number of drives into any number of volumes, then you can RAID across the volumes.

    If you Google "ecc disk", "ecc backup", or "ecc archive" you'll find other options, with details about each option.

  8. ZFS and lots of redundancy by Chewbacon · · Score: 4, Informative

    ZFS will guard against bit rot. That's not enough. RAID isn't enough. You need redundancy outside your home or office. Cloud maybe expensive for the amount of data you have, but Amazon S3 maybe the most affordable in that range. You could get S3 for maybe $15-20 a month if you have a terabyte of data. If that's cost prohibitive, rotate external drives regularly and keep one at work. You'll lose very little data since you're archiving things.

    --
    Chewbacon
    The Bible is like Wikipedia: written by a bunch of people and verifiable by questionable sources.
  9. Any Linux FS by MouseR · · Score: 2, Interesting

    I'd go for any Linux file system because Linux is the platform that evolves the least. It's still in the 90s so in 2037 it will still be current.

    (Watch out of the hater storm! Here they come!)

    But it's kinda true if you omit the snideness of the first statement. Because it's maintained by the user base, it's less likely to "devolve" into something incompatible due to market pressure. I, myself, would go for an Apple file system but Apple isn't so keep in keeping the Mac current and it doesn't bode well for the future. There might be a great change in the horizon.

  10. "some photos are ill-colored" by hcs_$reboot · · Score: 3, Informative

    That's a well known problem to photographers, photos colors are affected over time. Keep the photo negatives in a safe place!

    --
    Slashdot, fix the reply notifications... You won't get away with it...
  11. ZFS by johnslater · · Score: 2

    "Is there a software solution, like a file system or a file format, specifically tailored to avoid this kind of bit rot?"

    Yes, ZFS is specifically tailored for this. Configure a zpool running RAID-Z2 with a hot spare or RAID-Z3. Half a dozen 6TB or 8TB disks should suffice.

    Set it to auto-scrub regularly. Send logs and warnings to your email, and pay attention to them. (This is the hard part). Especially pay attention if they stop arriving. (This is even harder).

    I have used Nexenta for some time, but the free product has a limit of 18TB of raw storage. If I was starting today I would use FreeNAS which has no such restriction.

    The other comments about the futility of trying to do this long term are worth heeding, but that doesn't mean you shouldn't try. They key is to make this an active project rather than a passive archive, and to re-evaluate the best approach every few years.

  12. Snapraid by silas_moeckel · · Score: 2

    ZFS is nice I use it it makes assumptions about sane gear that are not safe on desktop grade hardware. BTRFS I also use works great. But for your specific use case snapraid is the thing to use. By that use case things that never change a big pile of files you keep adding to. Mind you your going to have to replace drives over time.

    --
    No sir I dont like it.
  13. Re:Use permanent storage. by Dorianny · · Score: 2

    HDDs will die. If you want something that will last for many decades or even centuries without getting corrupted then you need to stop using a volatile filesystem. The best option is to go with write once media. The best option I know is M-DISC.

    M-DISC's design is intended to provide greater archival media longevity.[3][4] Millenniata claims that properly stored M-DISC DVD recordings will last 1000 years.[5] While the exact properties of M-DISC are a trade secret,[6] the patents protecting the M-DISC technology assert that the data layer is a "glassy carbon" and that the material is substantially inert to oxidation and has a melting point between 200 and 1000 C.[7][8] -- Wikipedia

    Did you even bother reading the wiki you linked to or did you just copy and paste the first paragraph ?

    "However, according to the French National Laboratory of Metrology and Testing at 90 C and 85% humidity the DVD+R with inorganic recording layer such as M-DISC show no longer lifetimes than conventional DVD±R.[11]"

  14. Delete shit by Anonymous Coward · · Score: 2, Insightful

    Seriously, minimalism is underrated. There is such a thing as too much useless data. It's hard to catalog, it's hard to track, and if you sat down and sorted out what you actually could still use, most of it is probably worthless or you'd never find the time to use ever again. You might ask "well it's still worth storing IN CASE I ever find a use for it", but that's a typical data-hoarder sentiment that is unsustainable. You can't just keep buying media to store everything and never delete, it's a management nightmare results in these very issues.

    I guarantee you, if you find you've deleted something and actually want to get it back, it's available somewhere on the Internet. If it's NOT, then it's a candidate for keeping. That's how minimalism works.

    1. Re:Delete shit by davidwr · · Score: 2

      I knew someone in college with over 9,000 1.2M 5.25" floppies worth of

      If he was smart, a least half of them were used for backup.

      --
      Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  15. Re:Is this possible by __aaclcg7560 · · Score: 2

    USB has been around 20 years, and it could be another 20 before we lose USB 2.0 / 3.0 compatibility.

    Before that we had FireWire 400/800 and SCSI I/II/III. Won't be long before Apple obsoletes USB 1/2/3 for something with a much smaller connector.

  16. Re:Is this possible by 0100010001010011 · · Score: 2

    I've had a theseus' ZFS pool that I started years ago on a set of PATA drives. RAID-Z2 on OpenSolaris. It's since moved to SATA drives, been expanded a few times, moved from Debian to FreeBSD to now FreeNAS.

    Setup a pool with the level of redundancy you need and as technology changes use a system compatible with the old and new tech and just replace drives as needed.

  17. Re:Is this possible by __aaclcg7560 · · Score: 2

    This is the problem with maintaining your own hardware, and a really useful use case for cloud storage, so long as you can trust the provider to keep the hardware up to date while your files stay clean, private and available.

    If you want to keep your data private, get it off the Internet. No cloud provider can guarantee your data will stay private, much less clean and available.

  18. How about getting rid of it? by swb · · Score: 4, Insightful

    You've got terabytes of information you will never access again. How about just getting rid of most of it? Pick some subset you want to keep and then buy 3 HDDs and create triple copies of it Repeat this every year and you'll probably not lose any of the information.

    1. Re:How about getting rid of it? by Anonymous Coward · · Score: 2, Insightful

      I completely agree. Someday you will die. Maybe .01% of what you have stored will be valuable to your posterity (including photos and videos). After two generations - nobody will care except for a picture or two.

      Too bad you have now dumped Terabytes of uncurrated junk on them that they will now have to spend days of time checking for anything useful. Do your posterity a favor and save the useful stuff and junk the rest.

      By the way, if you don't, this will repeat with your children, and childrens children until each generation is handing down exabytes to the next. What a terrible legacy pretending we are so important.

    2. Re:How about getting rid of it? by Anonymous Coward · · Score: 2, Insightful

      Never in human history have we had the ability to save such an amount of useless, pointless "information". Unless you are super famous (and even then only 1-3 generations will give a shit) or end up becoming some very important figure in history, nobody and I mean nobody will look at your shit after you die.

      If my dad dumps TBs of data on me, I'm shredding it. I won't even plug the fucking things in.

      The time, money and energy you are putting into this is a complete and utter waste. Read a book, clean some windows, do any other mundane chore and you'll have achieved more. Go cut grass with scissors, you'll be more productive and it's a story your great grand children will actually hear about. They won't ever see a single photo or anything else you've "saved".

    3. Re:How about getting rid of it? by swb · · Score: 2

      It's worse than that. A friend of mine is in the estate sale business. He and his partner have been doing it, along with sidelines in collectible art and furniture, for close to 30 years, and cater to a who's-who list of local old money families.

      Unless you are an extremely serious collector of high value objects, about half your stuff will sell for 10 cents on the dollar and the rest will go to the landfill. Vintage silver service? Valued at the melt value of the silver.

      I helped him move stuff to the dumpster a couple of years ago and stumbled across (in the dumpster) 5 photo albums with family pictures. Nobody wanted them, not even the family, although I think in this case "family" was 4 cousins in their 50s who lived out of state.

  19. BTRFS another option by Anonymous Coward · · Score: 2, Informative

    in addition to ZFS, BTRFS also handles bitrot. I'm running a 4 disk BTRFS RAID 10 in my closet, mounting to a development machine on my desk via NFS, it's been working fine for about a year, and I scheduled a scrub a couple times a month whose purpose is exactly this, to catch and correct bitrot. It does so by using a CRC32 check, and if it detects a problem on one slice it overwrites that slice from the data on the good slice.

    Also I have offline and offsite backups of very important items.

    When using BTRFS read the wiki and settle on a kernel version and btrfs tools version that is sufficiently up to date, it's stabilized sufficiently for these kinds of things, but only if you are careful to run an up to date version that isn't marked as buggy on the wiki

  20. Re:Filesystems with CRCs... by davidwr · · Score: 2

    It looks like there are (at least) two with CRC: zfs and btrfs. Here's info for btrfs CRCs: https://en.wikipedia.org/wiki/... [wikipedia.org]

    You'd still need a backup or RAID solution to replace a bad black.

    If only Slashdot posts had CRC or something like that, the posts wauld say what the poster intended.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  21. OFFLINE Storage, with FS Access by williamyf · · Score: 5, Informative

    That a job for Linear Tape FileSystem

    https://en.wikipedia.org/wiki/...

    Tape is (still) the best medium for Long Term Storge. Over the years tape (or more likely, the engineers) has agresively incorporated in the standards things like FEC codes (from reed-solomon to more exotic ones nowadays).

    And since 2010, with LTFS, you can aceess the files with the convenience of a normal filesystem (but bear in mind, access is slow as hell).

    Back up your data to tape (more than one set), and send it to specialized offline storage facilities (cimate controlled: ie. temperature/humidity/dust/light control) from different providers, in diferente geographical areas.

    Since now there is only one true-tape standard (LTO-7 released in 2015, the tape business has been shrinking, so the proliferation os standards seems to be over now), so, if you use that today, chances are you will still find equipment to read it 50 years from now. Nonetheless, keep a few (as in two or more) SYSTEMS (Computer+Drive+SW) set up so that you can re-read. A cheapo micro formfactor mobo with an Atom Pocessor (but NOT the Atom C2000series PLEASE), linux, a 1Gbps nic and a tape drive should be more than enough. ....

    Now, for Online, as other posters have said, ZFS WITH ECC memory (and therefore, a very expensive Xeon, or AMD server type mobo) and JBOD will do the trick.

    --
    *** Suerte a todos y Feliz dia!
  22. SnapRaid by galvanash · · Score: 2

    Its not the only solution of its type, but it is imo the best:

    http://www.snapraid.it/

    It is perfect for your kind of situation - long term, reliable, efficient storage of lots of data that seldom changes. Think of it as offline RAID backup, it works like RAID, but it computes parity during your backup operations "offline"..

    The beauty of it, imo, is that is is not file system dependent. It works with NTFS, EXT2, HFS, whatever. It works on Linux, Windows, Macs, whatever. You don't need special controllers, and your hard drivers do not have to be matched to each other. You can even include drives on different buses (some on USB, some on SATA, whatever).

    It doesn't mess with your data at all - your files are stored normally and can be accessed normally, there is no difference between using it and not using it under normal operation - there is no performance impact at all (it only does anything during backup operations - and even then it is very lightweight if your data doesn't change drastically day to day). You just schedule it to run on a regular basis and it does it thing. It detects and recovers from bit rot in much the same way as ZFS (although you need double parity or more to really ensure full protection from multiple drive failures). You can be as paranoid as you want, it just takes more storage to be more paranoid :)

    It isn't good for frequently changing data, and it isn't so great for huge amounts of small files either. It takes a long time to generate parity setup if you have lots of data. You have to be comfortable with command line usage and you have to have some way to schedule jobs. Those issues aside, for things like media libraries and archival storage, it is easily the least painful, most effective solution I have ever used. And its free to boot (and opensource).

    Highly Recommended.

    --
    - sigs are stupid
  23. Re:Error correction codes. PAR2, btrfs, partitions by heypete · · Score: 4, Informative

    QuickPar on Windows is long-obsolete. MultiPar is the more modern variant.

  24. Check your RAM by GuB-42 · · Score: 2

    A lot of bit rot is actually caused by faulty RAM.
    When data is moved around, it has to go through RAM, and even smart filesystems like ZFS may not help you there. Servers usually have ECC memory for that reason and ZFS explicitly recommends it.

  25. Re:Error correction codes. PAR2, btrfs, partitions by Kjella · · Score: 2

    I agree on PAR2, simply because it's a file you can easily copy around, take backup off and so on. From a 1GB file I have ~3000 source blocks and ~30 recovery blocks, so I can recover from a lot of bit flips or failed 4kb sectors for a 1% size gain. If it's a photo set I usually make sure I can recover at least one completely missing photo. The nice thing is that it's sufficiently overkill you can probably go through several hardware generations without checking/repairing before you accumulate an unrecoverable number of errors. Which is good, because it's fairly CPU intensive so I wouldn't really want to go through an 8TB drive often. But I've found that an on-demand check when I actually need it is fine for content that is "in storage". It's not like it happens very often or applications and other more bit-flip sensitive formats would be screwed up quite often.

    --
    Live today, because you never know what tomorrow brings
  26. ZFS on Linux has software RAID. by Futurepower(R) · · Score: 4, Informative

    An Introduction to the Z File System (ZFS) for Linux.

    Quote: "ZFS is capable of many different RAID levels, all while delivering performance thatâ(TM)s comparable to that of hardware RAID controllers."

    That sounds good to me. I want to avoid hardware RAID because, when hardware RAID controllers fail, they are often difficult to replace.

  27. Slash rot by Excelcia · · Score: 5, Insightful

    Concur. File corruption due to "age" will not occur without hard read errors. Also, "ill-coloured photos" likely would not be ill-coloured in the case of actual data corruption, but would have whole blocks of hash in them. The user claims to have multiple terabyte sized hard drives - hard drives in this size category userd for archival storage are simply not old enough to be suffering data corruption due to age. The only hard drives suffering so are MFM hard drives that likely the poster wouldn't have a clue how to even interface into a current computer. Hard drives used for archival data storage will likely not age degrade before the interface standard they are based on becomes obsolete. Thus, a perfectly reasonable archival data storage strategy is to simply copy data from one hard drive to a newer (likely much larger and faster) drive when the next generation interface becomes standard, and before the previous generation is totally obsolete. For example, one can still get PATA + SATA USB adapters, SATA + M.2 adapters, etc.

    If the user who submitted this question is actually experiencing a problem at all, suggest that PEBCAK. Better explanation is the poster is not actually experiencing current problems at all, but is simply trying to sound important with inflated claims of reams of data and that Slashdot has been had.

    Further, no person with Slashdot posting authority should have been ignorant of any of the issues in this question that make its legitimacy questionable at best, and certainly not Slashdot worthy in any circumstance.

    1. Re:Slash rot by cvdwl · · Score: 4, Insightful

      Ahh, there's the Slashdot of old that I miss so much.

      --
      ... grumble, grumble, grumble, mutter, mutter, Millenium... Hand... Shrimp, I tol' 'em, I tol' 'em.
  28. Why so much love for ZFS, none for BTRFS? by leptechie · · Score: 2
    I'm seeing plenty of enthusiasm for a filesystem that has inline checksums that are verified on each file access, particularly ZFS. This doesn't quite address the OP's point: a filesystem for the ages. Given ZFS' license, it is not only outside the mainline kernel now, it likely will be forever.

    btrfs is in mainline now, and has a number of years to have settled down. Even if you don't like the more advanced features, it has some that tick all the boxes:
    - good on-disk checksums to detect errors (incl bit rot) for metadata and data
    - RAID modes to protect from whole disk failures
    - realtime and online scrubbing to detect and recover from checksum failures from another copy (RAID1) or rebuilding from parity (RAID5/6) - no action required from user (contrast with PAR solutions proposed)
    - subvolumes for segregation of data if needed, especially if there is a desire to consolidate multiple older drives and especially useful to pool capacity from these disparate sources to implement RAID modes.
    - online reshaping for the above So, even if you're not accessing the data frequently, if OP cares about data I'm sure it's no hassle to plug them in once a year and let a scrub run (for a couple of days if needed, I know this part of the code is still terribly slow). Even if btrfs is deprecated today, it will be a long time before support is removed from the kernel, and even longer before the last distro stops supporting it, and longer yet before that last distro release refuses to boot on whatever incarnation of hardware is available to plug the drives into. All the while the data is free to be migrated onto new spare/surplus drives and a new filesystem if needed.

  29. Letting go is the answer by 14erCleaner · · Score: 2

    Make copies of things you care about occasionally on new media. If you don't care about something, let it rot. It's very liberating, kind of like burning your desk.

    --
    Have you read my blog lately?
  30. I think this as well.. but then, I think again... by gosand · · Score: 2

    First off, people in this thread seem to think that all the information people are saving is about them.
    I have lots of data as well, but most if it is about my kids and family. My kids are starting to hit their teens, and we still go back and watch old family videos. Most are short, under 2 min. They capture points of times in our lives that we won't get back. Our old house, in a different state... friends we had then, neighbors. Not like full documentaries on them, but fading memories. It's not important to anyone else. And if I leave that to them, they may keep it or destroy it. But that is their choice to make. With the ability to capture all of this with much more ease than the previous generation, why shouldn't we? I only have a few photos of my grandparents, and I would like to have more. But they don't exist. I don't have any videos of them at all.

    It's not about being famous, or because you are important in the world's eye. There are entire professions dedicated to preserving that. It's about whatever YOU want to preserve. I once found a website that had information about my family name, I had never seen it anywhere before. Pictures and scans of documents, etc. I saved that information off, and about a year after that, the site went away. Since then, ancestry.com came to be, and I was able to use that information I saved to help stitch together our family tree.

    We are in the information age, I don't understand why someone would be so opposed to preserving that.
    You sound very angry about something, you should probably figure out what that is before it's too late.

    --

    My beliefs do not require that you agree with them.