Slashdot Mirror


Recovering a Wrecked RAID

Dr. Eggman writes "Tom's Hardware recently posted an article specifying how the professionals at Kroll Ontrack recover data from a RAID array that has suffered a hard drive failure, allowing for recovery of even RAID 5 arrays suffering two failures. The article is quick to warn this is costly, however, and points out the different types of hard drive failures that occur, only some of which are repairable. Ultimately the article concludes that consistent backups and other good practices are the best solution. Still, it provides an interesting look into the world of data after death."

175 comments

  1. RAID5. by Anonymous Coward · · Score: 0

    Any fanboys or critics of RAID5 here?

    1. Re:RAID5. by Anarke_Incarnate · · Score: 3, Informative

      RAID 5 is great, though expensive when done right. RAID 6 is better, though has less performance, as well as additional cost. Many controllers will not do RAID 6, and you lose 2 drives to parity. If your data is truly critical, you should have backups done VERY often, as well as a RAID 50. This way you are far less likely to lose data, though you have to have a stripe of at least 3 drives, in a mirror. This requires at minimum, 6 drives. There are also VRAIDs, which allow for you to lose drives until you hit the watermark of your data. This technology is usually reserved for SAN systems.

    2. Re:RAID5. by ashren · · Score: 0, Offtopic

      this is slashsot there are _always_ fan boys and critics

    3. Re:RAID5. by networkBoy · · Score: 4, Insightful

      For DB's and home use a mirror set is usually best. For homes because it is simple, for DB servers because it is fast.
      My home setup is a pair of 300 gig drives in a mirror, with another 1.6TB for other storage. Stuff that is important is on the mirror, and is differentially backed up to DVD regularly.
      Stuff on the mass array is available in original form (my DVD and CD library that's been ripped) or is backed up whenever it changes, which is not often (my code library, for example). Active code and my wife's thesis are on the raid. Supporting documents for the thesis are on DVD and mass storage, as is old code projects that I may borrow from for functionality in a new project. The old project (and likely several versions of it) are off on DVD in a safe deposit box, with the rest of my backups.

      Safe deposit boxes are awesome. I have one that can store 600 cds in cake boxes and it only costs $120/year. Dirt cheap for climate controlled fireproof storage.
      -nB

      --
      whois gawk date unzip strip find touch finger mount join nice man top fsck grep eject more yes exit umount sleep dump
    4. Re:RAID5. by drinkypoo · · Score: 4, Insightful

      RAID 50? Why not RAID 10? If you're already mirroring, the RAID 5 will probably not afford you much additional protection, and it has the effect of making writes slower.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    5. Re:RAID5. by Dr.+Eggman · · Score: 1

      Curiosity forces me to ask: If I'm looking into a series of cheap 80GB hard drives for $42, is it worth the extra ~$84 to go with a RAID 60, requiring 8 drives minimum, rather than the 6 drive RAID 50? I ask because in recent research, I noted that with RAID 50, if you suffer two HD failures in the same stripe, the entire array goes out, but with the RAID 60, you have to lose 4 HD (literally half the array) before the array is unrecoverable. Do you or anyone else have some preformance comparisons between RAID 50 and RAID 60? What sort of software and/or hardware options does one have with each type?

      --
      Demented But Determined.
    6. Re:RAID5. by jandrese · · Score: 4, Insightful

      Guys, if you're doing regular backups and have a cold spare handy then RAID5 is typically more than enough. Two drive failures are exceedingly rare unless you have some sort of controller fault (and that will typically hit all of your drives anyway). Don't forget about the write penalty either, RAID 5 has a fairly stiff penalty, but RAID 6 is even worse. If you're talking about RAID5_0 or RAID6_0 you're almost certainly doing it wrong or planning for a day when you can't buy replacement hard drives (nuclear holocaust?).

      To put it another way: What do you think your chances are of having a second drive failure in the few hours it takes you to replace the drive and rebuild it? Even if that does happen you just lose the data up until your last backup (a day at most).

      Most professional installations I do are RAID1_0, because people are building the RAID array for the performance, not the cost. Since you're using crappy 80GB HDDs, I'm guessing you're going for cost, which makes it strange that you're thinking about a RAID6_0 solution at all (the controller alone won't be cheap for that). If you work the odds I think you'll find that it's just not worth it to build a RAID6_0, especially given the write penalty and complexity (complexity is your enemy with this, complexity means bugs, which can undermine your entire effort).

      --

      I read the internet for the articles.
    7. Re:RAID5. by swb · · Score: 1

      Mirroring is an expensive waste of disk space unless you really need the fast write times.

      I think a 4 disk RAID-5 is a better sweet spot, since you lose less storage to parity/recovery data and it seems cheaper to buy 4x smaller drives than 2x larger drives. 2 300GB disks looks around $200 and 4x 120GB disks is around $220, but you end up with 60GB more space for the $20.

    8. Re:RAID5. by endoftheroadmatt · · Score: 2, Informative

      It's not that expensive with the price of drives these days. The nice thing about a mirror is that if your controller (or something else if you have a software raid) dies you can mount one of the drives on its own. After dealing with a failed controller, I'm glad to fork out a little more money for the piece of mind.

    9. Re:RAID5. by grommit · · Score: 1

      Because maybe you've got a dozen drives in the array. RAID 10 would be a serious hit on capacity while RAID 50 wouldn't be so bad.

      Some file storage doesn't need to be super fast but you need a lot of it and you need reliability. Hence, RAID 50. You'll learn that the first time you have a budget on a hardware deployment.

    10. Re:RAID5. by networkBoy · · Score: 1

      Bingo,
      Plus the controller is cheaper, saving the 60 gig worth of money.
      -nB

      --
      whois gawk date unzip strip find touch finger mount join nice man top fsck grep eject more yes exit umount sleep dump
    11. Re:RAID5. by wirelessbuzzers · · Score: 1

      RAID 50 is pretty fast for reads, and not very reliable. Fail the wrong two drives, and down it goes. With a dozen drives in the array, that's getting pretty scary: odds are low, but still significant, that if one drive fails, another will fail before you can resilver, and almost a half chance that it's the wrong one.

      I'd go for RAID 6 or RAID 10 for a big storage cluster, if it needed to be decently reliable. RAID 10 is a lot smaller, but it's faster and about 5 times less likely to fail than RAID 50. RAID 6 is about as fast as RAID 50, has the same storage capacity, and is much more reliable, but you'll probably need a RAID controller.

      --
      I hereby place the above post in the public domain.
    12. Re:RAID5. by lukas84 · · Score: 1

      Depends on what we're talking about.

      For SMB customers, i usually use 2 seperate RAID1 sets.

      Why? Because SMB customers usually use their stuff looong beyond the expected lifetime, and don't have any support contracts. If a RAID controller dies, you're usually in trouble - because a replacement without a contract costs more than a new machine. If you use RAID1, you usually don't have to worry about that, since you (usually) can just plug them into a normal controller.

    13. Re:RAID5. by Anarke_Incarnate · · Score: 1

      Mirrors have slower writes and faster reads. This is because the controller can pull different chunks of data from both/all hard drives. The writes are not faster as there has to be twice as many. Striping has faster writes but no tolerance for failure

    14. Re:RAID5. by Intron · · Score: 3, Informative

      With the two drives on separate channels, mirrored writes can be done in parallel.

      --
      Intron: the portion of DNA which expresses nothing useful.
    15. Re:RAID5. by goarilla · · Score: 1

      what i always wanted to ask a guy who clearly knows a lot about this stuff is
      what physical media do you recommend for regular snapshots/backups: tape archives, DVD's (it would take a hell lot of dvd's to backup 1 TB i think)
      or just another machine (with or without RAID), NAS, SAN, ...?

    16. Re:RAID5. by Anonymous Coward · · Score: 0

      And when the rebuild takes 14 hours? actually 24 considering the build to the hot spare is 10 hours ?

    17. Re:RAID5. by jandrese · · Score: 1

      Completely depends on your environment. Large tape changers (robots) are pretty much your only choice with big datacenters. For home use removable hard drives are often good enough, especially since most home users don't do offsite backups like they should. You can even used fixed hard drives for home use, depending on how much you value your data. DVD backups aren't worth it in my experiance, they're too finicky and streaming across multiple disks is a pain at best.

      --

      I read the internet for the articles.
    18. Re:RAID5. by swb · · Score: 1

      How often do you see raid controllers actually fail? I'm not sure I've ever seen one fail since I started working with them in the early 90s.

    19. Re:RAID5. by cheater512 · · Score: 1

      I use RAID 5 at home just for a little more piece of mind.

      When your making a terrabyte server you dont want to lose a terrabyte of data overnight.

    20. Re:RAID5. by cheater512 · · Score: 1

      At least in Australia around June last year the sweet spot was 4x320gig 16mb cache drives.
      Not sure if prices have changed since then but that gives you 1.2TB for the least amount of money.

      I did get that setup and RAID 5 is running on the four drives. Works well.

    21. Re:RAID5. by cheater512 · · Score: 1

      Not if one of the hard drives is reading data when the write command comes in.
      Then the read command has to complete first.

    22. Re:RAID5. by Anarke_Incarnate · · Score: 1
      Channels? You are not talking Fibre or SCSI, then, I assume. When you are discussing IDE in the context of RAID it becomes less "robust."

      The issue is that there are 2 writes that must be done, even in parallel, is not as fast as reading from multiple platters. You don't get to cut the write in half and use the speed of the spinning platters to your advantage. In a RAID 1 Read, you can read partial data from either or both drives.

    23. Re:RAID5. by Intron · · Score: 1

      I'm looking at a SCSI RAID controller right now with one host channel and 6 drive channels. If I mirror a drive on two different drive channels I can run full speed writes from the host with no drive contention. Both mirrors are getting written in parallel.

      It might be possible to read partial data from each mirror, but I've never seen a RAID controller do that. This one queues each read to the least busy mirror. Otherwise it has to process two SCSI commands instead of one.

      --
      Intron: the portion of DNA which expresses nothing useful.
    24. Re:RAID5. by Tracy+Reed · · Score: 1

      According to:

      http://www.usenix.org/events/fast07/tech/schroeder /schroeder_html/index.html

      The chances of a double disk failure in a RAID 5 are significantly greater than we think. A friend of mine had a double failure just last week.

    25. Re:RAID5. by v1 · · Score: 2, Interesting

      I have 3TB of storage here. 1TB of that is in a 5 x 250 hardware raid-5. In this case it's a stand-alone enclosure with firewire/usb ports on the back. I chose this because it's easily portable to another machine, so if the server buys the farm, I simply unplug it and walk it to the next server and jack it in. Also if the computer crashes, there is less risk of corruption of data since the raid box is handling parity calculation. It also does not hammer the server if I have to do a rebuild.

      The other 2TB is the large, more easily replaceable data, mostly video media. Those are arranged as single drives. I am not stupid enough to try to stripe them, I don't like the idea of any 1 of 8 drives failing leading to total data loss on all drives.

      I have a script that runs once a week and reads 100% of all blocks on all drives, and emails me if a bad block was found. I replace the drive immediately. To date I have yet to lose a byte.

      Closest call I had was a few years ago before the raid5, I had a pair of software mirrors. I had a server crash that wiped one drive's partition table and wiped the other drive's directory. Neither alone was fixable by any utility I tried. I ended up doing some really scarry things with DD and XXD in terminal to reconstruct the partition table from scratch on one drive and install firewire drivers on it so I could get at my data. I am very thankful for having a very high level of knowledge on partition table and basic directory layouts, most people would have had to cough up a stack of benjamins to get that fixed.

      My near future plans are to buy two 1tb lacie bigdick (they have a horrible failure rate, never use them for critical anything) and use that to back up the loose drives. Long term I plan to get a larger raid5 box to phase out the old raid as primary storage, and convert it to cover some of the less critical storage. Right now the cheapest and simplest backup plan for us seems to be to buy large cheap drives and keep 1 or 2 complete clones.

      --
      I work for the Department of Redundancy Department.
    26. Re:RAID5. by Anonymous Coward · · Score: 0

      I'm a huge critic of RAID5, RAID1 works just fine and I won't ever touch anything higher unless we absolutely need all the spindles.

      It seems its asking way too much to expect people to pull the right drive!! I've seen it happen several times... way way too many times. Yes even on those cool disk arrays with the blinking red failure lights are not immune.

      Whats worse is that after realizing their mistake they do something even more retarded than pulling the wrong drive! They re-insert the drive back into the raid set and pull the right one.

      This causes a data syncrhonization problem which makes all information changed while the wrong drive was pulled a collection of jyberish.

      What really sucks is spending 24hrs straight writing programs to write programs to extract data from the system because the same brilliant people thought that a RAID array meant that they didn't need to keep backups.

      Personally knowing that all the data and not some jumbled interpretation of it is stored on each disk makes me sleep a lot better at night.

    27. Re:RAID5. by blincoln · · Score: 1

      I've replaced two failed RAID controllers in the last year. Both of them were Compaq SmartArray boards, somewhere in the neighbourhood of 4-5 years old.

      --
      "...always new atoms but always doing the same dance, remembering what the dance was yesterday." -Richard Feynman
    28. Re:RAID5. by maddskillz · · Score: 1

      I had one fail on Thursday :(

    29. Re:RAID5. by imsabbel · · Score: 1

      In a Raid 10, a two-drive failure evebt can result in data-loss.
      In a Raid 50, it cannot.

      --
      HI O WISE PRINCE. WHT TOOK U SO DAM LONG?
  2. Long-winded advertisement^H^H^H^H^H^H^H^H article. by QuietLagoon · · Score: 4, Insightful

    It takes far too many pages to say what could actually fit in a page or two.

  3. FOR THE LAST FREAKIN' TIME... by canUbeleiveIT · · Score: 4, Insightful

    Never put all of your eggs in one little basket (RAID or otherwise)! For the love of God, if your data is critical, you need a backup *and* an offsite backup. At least one of each. There are no exceptions to this rule.

    1. Re:FOR THE LAST FREAKIN' TIME... by eln · · Score: 4, Informative

      That's true, but the most common cause of data loss on a RAID system that I've seen is when a disk fails, and people leave it there for days or even weeks without bothering to replace it.

      When a disk fails in a RAID, it needs to be replaced IMMEDIATELY. A RAID system with a failed disk is a disaster waiting to happen. I've been in smaller shops that don't even have spare disks around. When a disk failed, they would order a disk at that point and have it shipped.

      You should always have plenty of spare disks around, and you should replace disks as soon as they fail. A double disk failure is rare, but the longer you put off replacing a failed disk, the more likely it becomes.

    2. Re:FOR THE LAST FREAKIN' TIME... by Anonymous Coward · · Score: 0

      I sometimes have sudden long spurts of laziness. I currently have a RAID5 with a drive that faulted and is marked out of the array. I replaced the drive but after I turned the machine back on, I got too lazy to run the command to put the new drive into the array. It's been like this for two weeks, but every time I remember I'm not anywhere I can get to the machine to type the command to add the drive back in.

      Thanks to your insensitive posting, I'll go home tonight after work and the whole array will be dead.

    3. Re:FOR THE LAST FREAKIN' TIME... by denobug · · Score: 1

      A double disk failure is rare, but the longer you put off replacing a failed disk, the more likely it becomes.

      I run a RAID 1 array in my house. Recently I just experienced double disk failure about a month ago. Granted both disks are only a month old and are more than likely a manufacture's issue (Watch out Seagate users!), but I guess I'm the exceptions to the rule that both disks failed within days. Fortunately no important data was lost.

    4. Re:FOR THE LAST FREAKIN' TIME... by Anonymous Coward · · Score: 0

      Warranty, service contracts, etc. Keep them up to date and configure monitoring.

      With Microsoft Operations Manager and a valid 4 hour service contract we've never had a drive failed for more than 3 hours before it's been replaced.

    5. Re:FOR THE LAST FREAKIN' TIME... by vadim_t · · Score: 1

      When running RAID-1, use disks of different brands for extra safety. Then they should be less likely to fail exactly at once.

    6. Re: FOR THE LAST FREAKIN' TIME... by alex_guy_CA · · Score: 1

      Totally. I come home with a few GB of data from a photo shoot, and it goes onto the main drive on my computer. Then I back it up to TWO SEPARATE drives, not a RAID of two drives, two independent drives. Eventually, when the drive on my computer fills up, I transfer the files from there onto a DVD and bring it off site. Not only does this method protect me from drive failure, it protects me from user error. For example, if I am working on a photo, convert it to black and white and accidentally "save" instead of "save as," if I had RAID, I would still be out of luck. With my system, I can go to the other back-up and pull the unaltered file off. BTW I'm on a mac, and I use Deja Vu for my backups.

    7. Re:FOR THE LAST FREAKIN' TIME... by BagOBones · · Score: 2, Insightful

      I agree they must be replaced ASAP. However I don't keep drives on hand when my vendor can get a new disk to my desk within 4 hours of my call at no charge.

      --
      EA David Gardner -"... but the consumers have proven that actually what they want is fun."
    8. Re:FOR THE LAST FREAKIN' TIME... by rrohbeck · · Score: 1

      you should replace disks as soon as they fail. A double disk failure is rare, but the longer you put off replacing a failed disk, the more likely it becomes. That's what you have (cold or warm) spare drives for. The RAID can start rebuilding on the standby disk immediately if it has a spare.
      Given the recent results showing that disk failure rate is higher than it was thought, that the bathtub curve doesn't apply, and that failures are correlated, this sounds more and more like you really have to have it.
    9. Re:FOR THE LAST FREAKIN' TIME... by melstav · · Score: 1

      Repeat after me:

      "A RAID is not a backup."

      A (properly maintained and administered) RAID protects you from downtime caused by hardware failure but does nothing for accidental / malicious data deletion.

    10. Re:FOR THE LAST FREAKIN' TIME... by Anonymous Coward · · Score: 0

      No charge? Who's the vendor?

    11. Re:FOR THE LAST FREAKIN' TIME... by Anonymous Coward · · Score: 0

      "Never put all of your eggs in one little basket"

      Nope, I cant bel*IE*ve it

    12. Re:FOR THE LAST FREAKIN' TIME... by noidentity · · Score: 1

      "A RAID system with a failed disk is a disaster waiting to happen."

      I know little about RAIDs, but my guess is that a RAID with a failed disk is less reliable than a normal drive, since at that point any failure of one of the several remaining disks means major data loss (unless it's one of those that can handle two or more failed disks).

    13. Re:FOR THE LAST FREAKIN' TIME... by kasperd · · Score: 1

      a RAID with a failed disk is less reliable than a normal drive, since at that point any failure of one of the several remaining disks
      True if you are talking about RAID 5. If you are running RAID 0 on top of RAID 1, then it is not that bad. Two disk failures would only cause data loss if they happened to be the mirrors of each other. Still if you are one disk down, you still have both the risk of its mirror to fail and the risk of another pair having a double fault. So the risk is slightly higher than a single disk fault, but not much since the double fault isn't highly likely in the first place. (This construction makes most sense when you care about write performance, if you don't care about write performance you might be better off using RAID 6).
      --

      Do you care about the security of your wireless mouse?
    14. Re:FOR THE LAST FREAKIN' TIME... by bestalexguy · · Score: 1

      In serious systems spare disks are not "around", they are "inside" and go by the name of hot spares. This of course does not relieve from replacing.

    15. Re:FOR THE LAST FREAKIN' TIME... by denobug · · Score: 1

      Was there some incompatibility issue with using different brand/model, such as the difference in exact size, the sector size, etc? I'm not as experience with the RAID.

    16. Re:FOR THE LAST FREAKIN' TIME... by DaleGlass · · Score: 1

      The RAID will just be of the size of the smallest disk.

      The only problem you could have is that if you have 2 x 200GB drives and one breaks, it's best to get a bigger drive (say, 250GB) because not all 200GB drives are exactly the same size, and it could be smaller than your RAID. You could work around that by wasting some space intentionally and making a say, 199GB RAID.

    17. Re:FOR THE LAST FREAKIN' TIME... by Anonymous Coward · · Score: 0

      > You should always have plenty of spare disks around

      Back in the real freakin' world... who really has budget to spend on spare hard drives in a small shop?

      Get your head out your ar5e and remember that sometimes, you just have to make do.

      Sitting on a high horse, preaching to a small shop admin, does *not* help in the least. Don't you think he / she would *love* to specify spare disks when ordering that new server (which he / she had been pushing for, for over a year)!!!

      Wake up you fool!

  4. Software RAID by Kludge · · Score: 3, Insightful

    People often poopoo software RAID (it is more of a pain to manage). But when it comes to recovery, it's what you want. You know the disk format and have the tools. Of course, you really shouldn't have to recover, you should keep good backups or another mirror if its that important.

    1. Re:Software RAID by Anonymous Coward · · Score: 0

      The point of RAID is not to lose ANY data so you HAVE to do the recovering step. With "good backups or another mirror" you can only recover a past snapshot.

    2. Re:Software RAID by mnmn · · Score: 1

      Ok I'm getting sick.

      Backups are not a 'solution'. They are a 'backup solution' to the 'main solution'.

      Of course one should keep backups, but I'm sick of it being called a solution to drive crashes.

      I had a drive crash this morning (on a server that is fully backed up daily. And I've had to get another server started and serving DHCP and DNS simply because I needed the thing up and running FAST. The RAID system crashed. If a drive crashed and it was in a RAID system, the server will keep running. Now that's what I'd call a 'primary solution' to a drive crash rather than blurt out 'oh and regular backups is a good solution'. Only if you can backup once every minute and restore within 60 seconds.

      --
      "Give orange me give eat orange me eat orange give me eat orange give me you." -Nim Chimpsky
    3. Re:Software RAID by darrylo · · Score: 1

      Agreed (for home use), and ZFS's raidz is the easiest. ;-)

      Unfortunately, Solaris's IDE controller support sux. :-( If they only supported PCI-based IDE controllers, it would be soooo easy to create and maintain a RAID array using old hardware.

    4. Re:Software RAID by Sancho · · Score: 1

      You're throwing around the word 'solution' without defining the real problem.

      RAID is to keep the system running (except for that absurd RAID0 crap).
      Backups are to mitigate data loss.

      Now let's look at what the article was about. The title is "Recovering a Wrecked RAID". Why might you need to do this? To keep the system running? Not with what they're talking about. No, they're talking about recovering from a data loss where RAID is involved. Responding to this with, "Well, you should have kept backups. Then you wouldn't need the expensive and time consuming recovery solution," is absolutely an appropriate response.

    5. Re:Software RAID by iwoof · · Score: 1

      I use USB 2.0 connected external IDE drives for ZFS. USB is fast enough for me (my Solaris box serves as a NFS server for MythTV just fine) and lets me move them easily to another machine when needed. Solaris treats USB as SCSI, so it gets around those IDE woes, yet I can still use old IDE drives in the array. --Woof!

    6. Re:Software RAID by TCM · · Score: 1

      I find NetBSD's RAIDframe to be very reliable and hassle-free. I'm using RAID-5 with 5 disks and get 110MB/s reads and 70MB/s writes. It also never gave me _any_ headache whatsoever. It just works.

      I think software RAIDs are better than hardware RAIDs (for home use) due to their flexibility. You can mix different disk interfaces (IDE, SATA, SCSI, ...) and sizes. If one of my 320G disks were to fail and a new disk was more expensive than the next bigger size, I could just use the bigger disk. It's a stupid example to show that you don't need components that are identical down to the number of blocks. I could also just pop in an external USB disk and use that while I get a replacement.

      Or I could gradually upgrade to a new tech. Say I'm using IDE disks now. I could pop in SATA disks and duplicate all components and be running a SATA RAID from now on.

      Also, you are not dependent on a $$$ piece of hardware that's incompatible in its RAID implementation details to other vendors' products. If your vendor goes out of business and your shiny hardware controller is not available anymore, what do you do? Contrast that to finding any box that can talk to your disks and downloading a copy of NetBSD.

      Of course I'm totally ignoring backups. I'm talking about home use in the order of 1TB or more. Where do you backup such amounts of data cheaply, anyway? Thus for me, RAID _is_ the backup, unfortunately. That's why I favor flexibility and accessibility over speed or being able to hotswap a component to get 99.999% uptimes.

      --
      Of course it runs NetBSD. BTC: 1NT7QvbetmANwaMzhpVL6
    7. Re:Software RAID by Anonymous Coward · · Score: 0

      Software raid is great! When a drive fails, you cannot tell which one it is so you use your best guess, get it wrong, rebuild the array and looose everything!

      Oh wait.

      For the simple recovery (single failed drive), software raid is a real PITA. Have you actually had a drive failure with software raid? Are you SURE you can sucessfully work out which drive has failed and do a rebuild? Have you tried it?

    8. Re:Software RAID by fuzza · · Score: 1

      Um... what's so hard about working out which physical disk /dev/sdc is? You _do_ have a hardware tech on site, don't you?

      Unless you were thinking you can't determine that it is /dev/sdc, which is wrong (hint: cat /proc/mdstat).

      --
      Can't find examples of evolution? No matter, neither could Dawkins
    9. Re:Software RAID by L0rdJedi · · Score: 1

      Of course I'm totally ignoring backups. I'm talking about home use in the order of 1TB or more. Where do you backup such amounts of data cheaply, anyway?

      If you've got 1 TB or more at home, you can build (or buy) cheap external drives with USB, FireWire, or eSATA enclosures. In fact, you can even buy external enclosures than can take multiple drives in a RAID configuration. Of course, it makes backups a little more cumbersome (can't just back everything up to a single drive), but at least it gives you a backup.

      There's plenty of enclosures on NewEgg that, with the right size of drives in a RAID 5 config, will give you 1+ TB of backup storage. Most of them only run on USB 2.0, but once you've done a full backup, you can just do incrementals of the data each day.

      I run RAID 1 at home but I also back everything up to a hard drive in a USB enclosure. I can't imagine both drives failing at the same time, but I'm not going to take my chances.

    10. Re:Software RAID by Anonymous Coward · · Score: 0

      How do you even know that it's /dev/sdc when all that happens is your computer won't boot because your IDE (or SCSI) controllers get stuck timing out for this faulty drive? You're that good at knowing which SCSI controller gets what letter in linux and then what number maps to where? What if there are three SCSI controllers? What if it's the middle of the day and the pressure is on, are you sure you're not going to hose it? You had to read those little jumpers but your understanding of binary goes slightly wrong and you accidentally take 0010 instead of 0100? Are you sure the computer doesn't simply hang when the drive goes bad? If you can answer these questions and feel comfortable using software raid, then I guess it's your call.

      Anwyay, no matter what RAID system you use, until you actually have tried doing a recovery, you have a false sense of security. True for hardware RAID, true for software RAID, true for backup tape, true for CD-R.

      (If you're at the level of having a 'hardware tech on site', then you should consider using hot-swappable systems. After all, why bring down a server just to swap a hard disk?)

    11. Re:Software RAID by Schraegstrichpunkt · · Score: 1

      Have you actually had a drive failure with software raid?

      Yes.

      Are you SURE you can sucessfully work out which drive has failed and do a rebuild?

      Yes.

      Have you tried it?

      Yes.

      Anything else?

  5. Gotta love Tom's articles by sjbe · · Score: 4, Insightful

    Could these articles be any more annoying to read?

    They painstakingly

    NEXT PAGE

    pull data

    NEXT PAGE

    off the

    NEXT PAGE

    damaged drive

    1. Re:Gotta love Tom's articles by not5150 · · Score: 0, Flamebait

      Heaven forbid they actually try to make money to pay employees, office leases and equipment.

    2. Re:Gotta love Tom's articles by fossa · · Score: 1

      I never understood the "next page" obsession that various websites have. I assume it's a way to fit more advertising in a given article, but why not, instead of splitting articles over multiple pages, simply insert more advertising on a single page? Are publishers afraid multiple ads will not load immediately? Surely loading an entire new page is worse than one more flash box? Do contracts require a given ad to have its own page? I'm curious.

    3. Re:Gotta love Tom's articles by fossa · · Score: 1

      This should be obvious, but if they annoy the readers too much, they won't be making any money.

    4. Re:Gotta love Tom's articles by Evil+Adrian · · Score: 1

      You're talking to the open source crowd, they don't believe in making money.

      --
      evil adrian
    5. Re:Gotta love Tom's articles by gEvil+(beta) · · Score: 1

      I assume it's a way to fit more advertising in a given article, but why not, instead of splitting articles over multiple pages, simply insert more advertising on a single page?

      Let's see...10 ads per page spread out over 10 pages? Or 50 ad per page spread out over 2 pages? Both are very annoying, but if I can't even find the article text in a sea of ads, I'll never visit the site again. Then again, Tom's crossed that threshold for me a long time ago...

      --
      This guy's the limit!
    6. Re:Gotta love Tom's articles by nschubach · · Score: 1

      I had a designer tell me once that people don't like to scroll. ("wtf!?") They want to read everything on one page. If they want to read further, they will click the link. I'm sure Ad revenue has a fair bit of play in it as well.

      --
      Every time I start to have faith in humanity, I ruin it by driving to work between 7 and 8 am.
    7. Re:Gotta love Tom's articles by anagama · · Score: 1

      I wonder if there are any actual stats on this because I just don't believe it. Well, maybe I believe it but I certainly prefer to scroll. It requires no aiming of the pointer and clicking - just grab the mouse, have it inside the window I want to scroll (a big target), and then scroll. Scrolling is too easy to get such short shrift.

      --
      What changed under Obama? Nothing Good
    8. Re:Gotta love Tom's articles by fossa · · Score: 1

      (This isn't directed at you, just poor design) Readers may not like to scroll, but they hate waiting for page loads even more. At least that's what Edward Tufte implied at a conference. Also see discussion at Tufte's website. Some interesting points raised. I suspect that the real issue is the page loading speed, rather than the action required to get there. Once loaded, scrolling is instantaneous. Paging could be, but would require different formats (e.g. PDF) or cleverer browsers (I thought I heard something about a Firefox plugin that could convert "next page" links into a single large page?).

    9. Re:Gotta love Tom's articles by Duncan3 · · Score: 1

      Hey, if advertisers are stupid enough to pay Google 10 times to show an ad to the same person, they deserve what they get...

      Which is to have to sell stuff at such a high markup noone buys them. HA HA!

      --
      - Adam L. Beberg - The Cosm Project - http://www.mithral.com/
    10. Re:Gotta love Tom's articles by Anonymous Coward · · Score: 0

      What? You think Ontrack didn't pay them enough already or something?

    11. Re:Gotta love Tom's articles by nschubach · · Score: 1

      As much as it's hated (for it's abuse), AJAX could load the content in hidden DIVs while you read and display them when you click. I've yet to see anyone do that though. What if someone loads the page and doesn't want to read page two. You've just wasted bandwidth. It still would be quicker to load only the text using AJAX instead of the whole page plus images.

      --
      Every time I start to have faith in humanity, I ruin it by driving to work between 7 and 8 am.
    12. Re:Gotta love Tom's articles by Anonymous Coward · · Score: 0

      They made a RAID article... now when you skip a page, it's quite easy to reconstruct the entire article again, based on what was on the previous and next page. Tom's even made it so that you can read the first and last page of an article and know everything in between, so those pages are really more of a checksum than actual data.

  6. Generally I just smack a few of the Guild around by Timesprout · · Score: 1

    And tell them to cause more damage next time or I will tell everyone they secretly admire Steve Ballmers commitment to developers.

    --
    Do not try to read the dupe, thats impossible. Instead, only try to realize the truth
    What truth?
    There is no dupe
  7. Re:Long-winded advertisement^H^H^H^H^H^H^H^H artic by Anonymous Coward · · Score: 0

    HTH.

  8. Could have mentioned other options by Bearhouse · · Score: 2, Informative

    OK, this is for the very extreme (and rare) cases where the disk is physically very damaged. Most of the time, you'll find that available tools are enough. See http://en.wikipedia.org/wiki/SpinRite, for example. Has worked for me, but 1. Copy the entire disk contents first. 'Low-level' disk-to-disk dup utilities (Seagate...) can work fine here. 2. Be prepared to wait. Of course, if your disk is on its way out, the intensive reading, (and writing, in the case of SpinRite) may accelerate its demise. Keep the disk at a constant, cool temperate, (stick it in a domestic freezer if you've no aircon).

    1. Re:Could have mentioned other options by goarilla · · Score: 2, Interesting

      what's wrong with popping in a livecd like sysreccd http://www.sysresccd.org/Main_Page/
      and to use dd to take an image of the disk or ghost (but iirc ghost uses dd) ?
      i have been able to successfully recover 99% of a crashed, broken, badly partitioned hard drive that way numerous of times
      offcorse i do not claim i have the expertise as ontrack but seeing as i've done this for quite
      a few friends and since well not everybody can pay what they ask for their service, i can understand
      why they get drives that have been subjected to a DIY recovery at first

      But why do we need all these expensive consumer disk recovery tools, that often do not work correctly
      i must agree on the issue that this article is mainly advertising but that is to be suspected
      i mean the dude works in that company, he's kinda obligated to praise the so called 'superiority' of their own proprietary tools.

      granted i don't have a clean room but the area in that so-called clean room doesn't seem so clean
      and well the platters hanging on the top right on the other picture doesn't strike me as a good idea neither
      that obviously wasn't a clean room and i would at least encourage the use of a static bag anyway.

    2. Re:Could have mentioned other options by GatorMan · · Score: 1

      SpinRite is not an alternative to professional data recovery, but simply one of the many steps you can take during the recovery process. SpinRite does not repair a seized motor assembly, failed electronics (circuit board or otherwise), damaged/failed read/write head assembly, firmware corruption, etc...these symptoms need to be diagnosed and repaired by an experienced recovery specialist. Many situations, 60% by Ontrack's figures, do not fall under the 'software coulda got it' category.

    3. Re:Could have mentioned other options by greg1104 · · Score: 1

      Spinrite was a sometimes useful utility in a few years following its earlier releases; I know I saved a drive or two with it back in the day back where it was the only useful tool around for home recovery work. We moved past that period quite some time ago. For many years now, hard drive electronics have corrected errors like bad sectors at a level well below where it's possible for Spinrite to operate at. Gibson and company should have withdrawn Spinrite from the market some time ago. Do not be fooled by the fact that it's still for sale into thinking that it still works on modern equipment. You should just run the drive manufacturer's disk utility instead, that will force a SMART scan that's far more useful than Spinrite.

      Whether it's worth copying the drive to another one before trying recovery is very dependant on how much data is lost, and how much work it will take to setup for that copy. I've had drives where the act of shutting the system off and moving the bad unit was enough to fully kill it; the disc never spun back up again once it stopped. If you only have a small amount of data to get off, you may be better off just trying to do the recovery without powering off the system at all.

      For recovery of Windows based systems from only partially damaged drives, the best affordable consumer-level tool I've found is iRecover. I've recovered gigabytes worth of data lost on lost drives with that tool; highly recommended if you've lost the filesystem, but the drive still spins and you can access it from your PC.

    4. Re:Could have mentioned other options by RalphTheWonderLlama · · Score: 1

      i have been able to successfully recover 99% of a crashed, broken, badly partitioned hard drive that way numerous of times

      AaAAAaaaaahahahahaha, funny. 99% with only software tools?
      --
      simple, fast homepage with your links: http://www.ngumbi.com/
  9. Printer Friendly by TubeSteak · · Score: 3, Insightful

    http://www.tomshardware.com/2007/02/14/raid_recove ry/print.html

    I don't know why TH has printer friendly pages that they don't ever link to.

    --
    [Fuck Beta]
    o0t!
    1. Re:Printer Friendly by hankwang · · Score: 1

      I don't know why TH has printer friendly pages that they don't ever link to.

      Where did you find that link? If I follow it I'm redirected to the multi-page version.

    2. Re:Printer Friendly by Simon80 · · Score: 1

      Go to TH, and then go to that link URL again. They check the referrer to prevent people from deep linking to the printable page. That should be the first thing you try whenever similarly weird link breakage occurs.

    3. Re:Printer Friendly by hankwang · · Score: 1

      Go to TH, and then go to that link URL again. They check the referrer to prevent people from deep linking to the printable page.
      Already tried that, but apparently THG doesn't like Opera. The link works in Firefox, though.
    4. Re:Printer Friendly by Schraegstrichpunkt · · Score: 1

      Already tried that, but apparently THG doesn't like Opera. The link works in Firefox, though. You mean when you spoof Firefox?
  10. Questionable advice from Tom's by greg1104 · · Score: 5, Interesting

    I have a concern with the recommendations given in the introduction:

    We assume that all hard drives will be handled with care, so they should be installed in suitable drive bays. If you use multiple drives, we recommend removable drive frame solutions, which help reduce vibration transfer onto the computer chassis and even back to individual hard drives. Make sure that your system has sufficient ventilation, so high speed hard drives won't overheat.

    I've found that the removable drive frames available for cheap consumer hardware to be total crap. The metal enclosure keeps heat close to the drive, and the tiny fans used don't move nearly as much air past the drive as when it's inside the case, being cooled by the airflow of the case fans. The drive temperature is therefore higher even under the best conditions. In addition, the smaller fans fill with gunk quickly and as a result wear out faster than larger ones, leading regularly to a drive trapped in an uncooled box.

    I've used enclosures from Promise, Enermax, and several other companies whose products were so bad I tried to forget their names; all had fans that instantly became the least reliable part of the entire system once I installed the drive frame, and I wasn't happy with the drive's temperature from day one.

    I don't think the person making this comment at Tom's ever keeps systems running long enough to realize the long-term issues that come with anything cheaper than server-grade drive enclosures for hard drives. I'd welcome suggestions for a better quality product in this category. It's a hard subject to cover, because by the time you've had several units setup for a year or two to gather useful data on how rugged they are, the product is obsolete; not something any review site I'm aware of is setup to cover.

    1. Re:Questionable advice from Tom's by onetruedabe · · Score: 1

      Stupid hint: space your disks at least one drive's width apart if possible.

      It seems obvious, but if you have three internal 3-1/2" bays, put your disks in slots #1 and #3 so there's some ventilation between them.

      Kinda like urinal etiquette...

      -- :- Dabe

    2. Re:Questionable advice from Tom's by Anonymous Coward · · Score: 0
    3. Re:Questionable advice from Tom's by Anonymous Coward · · Score: 0

      Wrong. Airflow needs to be over the hot components on the drive electronics. Enterprise class RAID chassies require blocking unused drive bays to prevent air from missing the drives that are present. Adding empty space lowers the airflow where you need it - on the hot drive components.

      If you want cooler drives, which you do, have dedicated fans or blowers and force the air over the drives.

    4. Re:Questionable advice from Tom's by toddestan · · Score: 1

      Wrong. Well, sort of. Enterprise class RAID chassies also leave room between the drives so the heat can escape. It may not be a full drive width, but it's usually a centimeter or so. Regular PC cases often just put them right on top of each other, which means the drives get hot. Spacing them out every other bay in this case is just common sense. Alternatively, just get those 5.25" to 3.5" kits and install them in the 5.25" bays, that way there is plenty of air around the drives.

  11. IntelliTXT too by Skadet · · Score: 3, Insightful
    Yeah, between that and IntelliTXT, I pretty much gave up.

    What if your hard drive decides to enter the Elysian Fields in this very moment? Sure, you could simply get a new hard drive to substitute for the defective one with a quick run to your favorite hardware store. And with last night's backup you might even reconstruct your installation quickly. But what if you don't have a backup? We have experienced the truth to be more like this: many users don't even have a backup, or it simply is too old and thus useless for recovering any useful files at all. In case of real hard drive damage, only a professional data recovery specialist can help you - say bye-bye to your vacation savings!
    Anyone remember when Tom's Hardware was good?
    1. Re:IntelliTXT too by operagost · · Score: 2, Insightful

      Besides dedicating only about 10% of the page to actual content, the grammar is actually even worse than it used to be. Don't they have any native English-speaking editors?

      --

      Gamingmuseum.com: Give your 3D accelerator a rest.
    2. Re:IntelliTXT too by mobby_6kl · · Score: 0, Redundant

      >Anyone remember when Tom's Hardware was good?

      No.

    3. Re:IntelliTXT too by Mad+Quacker · · Score: 1

      Anyone remember when Tom's Hardware was good? Not actually I don't, I remember when they said 30 FPS is enough for everybody and professed it as the ultimate authoritative truth. I hope by now it is clear to everyone how false that is. Like claims about WMD's. I'm still waiting for a public retraction on both fronts.
      --
      "I don't know that atheists should be considered citizens, nor should they be considered patriots." George HW Bush
    4. Re:IntelliTXT too by PitaBred · · Score: 2, Informative

      *.intellitxt.com is blocked in my adblock list. Makes hundreds of sites more readable.

    5. Re:IntelliTXT too by Mad+Quacker · · Score: 1

      Well, it is (actually, about 24 fps seems to be enough, you don't find many people complaining about fps for movies, right?). The missing piece to the puzzle is that there's more to it than that. You need to simulate the motion blur accurately. I expect this is much more CPU intensive than simply upping the fps high enough that no motion blur is required to keep the brain happy. I guess I was wrong.. 24fps enough for a illusion of motion, not what emulates reality, motion blur or not. It's quite easy to see discrete frames in the movie theater. But lots of people think we found WMD too..
      --
      "I don't know that atheists should be considered citizens, nor should they be considered patriots." George HW Bush
    6. Re:IntelliTXT too by dpilot · · Score: 1

      Well once upon a time, the Doom engine was capped at 35fps. They left it so you could get higher fps numbers for benchmarketing, but they only put images onto the screen at a max rate of 35fps.

      I won't say whether or not that's giving THW too much credit or not.

      --
      The living have better things to do than to continue hating the dead.
    7. Re:IntelliTXT too by Madax · · Score: 1

      No...
  12. Gibson the Hack by spun · · Score: 3, Insightful

    SpinRite is a Steve Gibson product. Steve Gibson is a pompous blowhard with few real skills. There are plenty of other ways to do a low level copy of a disk.

    --
    - None can love freedom heartily, but good men; the rest love not freedom, but license. -- John Milton
    1. Re:Gibson the Hack by SEMW · · Score: 1

      The criticisms on the Wikipedia article you linked to were all regarding internet security. That says nothing whatsoever about how good or bad Spinrite is. I happen to write terrbile poetry; that doesn't say anything about how good any Mathematical papers I may produce would be.

      --
      What's purple and commutes? An Abelian grape.
    2. Re:Gibson the Hack by spun · · Score: 1

      True. But Spinrite follows the Gibson pattern: do something that everyone else is doing, but because of ego, do not pay attention to what anyone else is doing and reinvent the wheel over and over again. When people point out the stupid mistakes you make because you think everyone else in the world is inferior to you, attack them.

      Spinrite isn't bad, per se. It's just not in any way revolutionary or important. There are many better tools out there for doing low level copies.

      --
      - None can love freedom heartily, but good men; the rest love not freedom, but license. -- John Milton
    3. Re:Gibson the Hack by Bearhouse · · Score: 1

      I'm no Gibson fanboy, and have used - and mentioned - other tools (and others are referenced in the Wiki). Was just saying that I've used SpinRite, and it worked for me. If you've better tools to suggest, why not mention them, please?

    4. Re:Gibson the Hack by gEvil+(beta) · · Score: 1

      That may be so, but I gotta say that he did write a damn fine disk repair/recovery utility...

      --
      This guy's the limit!
    5. Re:Gibson the Hack by operagost · · Score: 1

      Your argument is what we'd call "poisoning the well". Many have successfully recovered data using Spinrite, so however much of a "hack" or "blowhard" Steve Gibson is, he seems to have done well with Spinrite.

      --

      Gamingmuseum.com: Give your 3D accelerator a rest.
    6. Re:Gibson the Hack by martin-k · · Score: 1
      ddrescue and a fridge. You'll be amazed how little data is typically damaged on a dead hard disk.

      Be sure to use the ddrescue version that works with a logfile, so that you don't have to write down the blocks that you could rescue.

    7. Re:Gibson the Hack by spun · · Score: 1
      It's not so much that it doesn't work, it's that he is a huckster and tried to drum up business with FUD and pseudo-science. I'll copy and paste the criticism of spinrite here:

      POSTED TO comp.dcom.xdsl] ken [or was it Steve Gibson -- do I detect a troll here?] wrote:

      >What you don't know is that John Navas used to work for a hard disk >manufacturer twelve years ago ... and that he's had a serious personal >hatred for me (due to my SpinRite product) ever since. ...

      Here are the facts:

      As I recall my first encounter with Steve Gibson was when I was managing development for a principal disk technology manufacturer and he was promoting an earlier version of SpinRite. At that time I had about 15 years of experience in disk technology. My sincere efforts to help Steve correct some of the more serious errors in what he was saying proved to be a complete waste of time.

      His subsequent "hard disks die!" campaign only compounded the problem. He was spreading hysteria then (for his own apparent gain), and he is doing it again now with Shields UP! The assertion that "hard disk die!" was based on a claim that magnetic patterns "weaken" over time, and that SpinRite could somehow "refresh" them.If this were true, then IDE drives, which cannot be "refreshed," would be dying all over the place, not to mention all the old mainframe drives that had already been running steadily for years. Furthermore, the embedded magnetic servo (used in virtually all reasonably current disk drives) can only be written at the factory.

      If it "weakened" then the drive would fail permanently -- SpinRite could not possibly help. The fact that IDE disks have not been failing all over the place due to "weakening" and lack of "refreshing" by SpinRite is clear evidence that the claims were false. (Most problems with older MFM/RLL drives that SpinRite claimed to fix were the result of drives not being properly low-level formatted at working temperature on the actual controller in the end user's computer. This problem was easily solved by using the standard low-level format in the actual controller.

      That SpinRite could also correct the problem meant nothing, since all it was doing was using the same controller.) Worse, Steve encouraged people to use SpinRite to "recover" areas that had been detected and marked as defective at the factory, a bad idea that leads to more failures in the long run, since end user controllers are not as sensitive as factory test equipment -- they are simply incapable of the kind of thorough testing done at the factory. Then of course SpinRite would be "needed" again to "fix" those failures, a self-fulfilling prophecy. As for the people that swear by SpinRite, there are lots of people that believe in astrology, but that doesn't make it any more valid.

      I suggest that those with a technical bent visit the SpinRite website and see they can swallow such things as:

      * "prevents mass storage systems from crashing" (nothing can do that)
      * "sophisticated magnetodynamic physics models" (pseudo science)
      * "weakest possible magnetic signals" (not real)
      * "we doubt whether anyone but Steve and a handful of aliens would even know what all this is" (no argument there)
      * "Weak Bits" (no such thing)
      * "gradual evolution of the drive's storage surfaces through physical and magnetic stresses" (mumbo jumbo)
      * "SpinRite is actually able to lower the amplification of the drive's internal read-amplifier" (impossible, and after all this time Steve apparently still does not know that data is recorded on magnetic disks with flux reversals, not "amplitude")
      * "mass storage systems need periodic preventive maintenance" (nonsense)
      * "yeah, we know, Steve's a magician wit

      --
      - None can love freedom heartily, but good men; the rest love not freedom, but license. -- John Milton
    8. Re:Gibson the Hack by SEMW · · Score: 1

      Colour me unimpressed by that article. My Physics lecturer for one would be fascinated to hear that magnetodynamics is a "pseudoscience"...

      --
      What's purple and commutes? An Abelian grape.
    9. Re:Gibson the Hack by spun · · Score: 1

      Care to define magnetodynamics, then? All wikipedia has is "magnetodynamic force" but that redirects to "pondermotive force." I know, But saying that a computer program could in any way make use of magnetodynamics to increase it's ability to recover data is pseudo-science. Remember, it has to operate through mutiple levels of abstraction: the OS, the drivers, the cache and the firmware. Care to explain how anything having to do with magnetodynamics could be used in a data recovery program that is meant to work across many different kinds of drives?

      It would be like me saying that my disk recovery program makes use of the Van der Waals force. There really is such a force, of course, but it would have nothing to do with data recovery.

      --
      - None can love freedom heartily, but good men; the rest love not freedom, but license. -- John Milton
    10. Re:Gibson the Hack by SEMW · · Score: 1

      Care to define magnetodynamics, then? Admittedly I've only studied magnetostatics so far, but then I'm not very far through my degree. Since magnetostatics was defined as the study of static magnetic fields, I don't think I'd be making a particularly large logical leap to infer that magnetodynamics is the study of non-static magnetic fields. Since, according to Wikipedia, magnetostatics is a good approximation for all but rapidly alternating magnetic fields, I could even make a larger leap and infer that magnetostatics is generally used to study... rapidly alternating magnetic fields?

      saying that a computer program could in any way make use of magnetodynamics to increase it's ability to recover data is pseudo-science. Remember, it has to operate through mutiple levels of abstraction: the OS, the drivers, the cache and the firmware. Care to explain how anything having to do with magnetodynamics could be used in a data recovery program that is meant to work across many different kinds of drives? That's a much better point; and one I think I'm forced to concede. On looking at the page where Gibson talks about magnetodynamics, there doesn't really seem to be any actual magnetodynamics. Oh well; point conceded.

      It would be like me saying that my disk recovery program makes use of the Van der Waals force. There really is such a force, of course... I'm afraid I have to admit that I'd never heard of it. Damn, I need to actually turn up to more of my lectures... :)
      --
      What's purple and commutes? An Abelian grape.
    11. Re:Gibson the Hack by Anonymous Coward · · Score: 0

      I don't know anything about the science (or the pseudo-science, as the case may be) but you boot to a DOS disk, it interfaces with the hardware level (i.e. he writes his own drivers), and disables the cache. The only thing he has to deal with is the firmware.

  13. Is there such a thing as... by ALecs · · Score: 1

    RAID 11? Or, more to the point, how would I implement a mirror, but with 3 drives? Does linux 'md' do this? How about any controllers?

    After all, we're supposed to replicate data 3 times, right?

    1. Re:Is there such a thing as... by operagost · · Score: 1

      You would set up the third disk as a hot spare. The mirror would rebuild onto it. Your hypothetical 3-disk mirror would be safer (because no rebuild time would be necessary), but it's pretty impractical. I would recommend investing in an additional disk and using RAID-6 (aka ADG).

      --

      Gamingmuseum.com: Give your 3D accelerator a rest.
    2. Re:Is there such a thing as... by multipartmixed · · Score: 1

      Solaris Volume Manager (aka ODS and SDS) does this out of the box. I wouldn't be surprised if other LVMs do too.

      With SVM, create three stripes, create a mirror with one stripe, newfs it, when the newfs is complete, add a stripe to the mirror, (and then add another stripe to the mirror).

      The stuff in the brackets is the only difference between creating RAID 1+0. Oh, and you don't want to use the GUI...

      FWIW, my standard rollout these days is software-triple-mirrored hardware-RAID5 enclosures with an independant path to each enclosure. I have no idea what the hell you call that. I originally set out do to a typical three-mirrors-of-stripes, and then realized that I could just add my hotspares in as RAID 5 parity and pretend that I had pre-populated hot spares from a reliability point of view.

      --

      Do daemons dream of electric sleep()?
    3. Re:Is there such a thing as... by Anonymous Coward · · Score: 0

      Yep. Linux md definately does this. Just create a RAID1 and if you are using /etc/raidtab, just set it to have 3 devices.
      I use this because lilo will not read a kernel from a RAID5 array, so I create /boot mirrored on 3 drives (RAID1) and / gets to be a RAID5. No special controller needed.

    4. Re:Is there such a thing as... by Anonymous Coward · · Score: 0

      Currently I'm running RAID1 with 4 disks for the lack of any better way of handling the extra disks in a 4-disk raid5 bootable system. Since I can't directly boot the raid5, the raid1 partition is used to boot the kernel. Since I have 4 disks and wanted all to be partitioned the same way, well, no sense in wasting the other partitions that really don't need to be part of a dual disk raid1...

    5. Re:Is there such a thing as... by Spirilis · · Score: 1

      I know Linux software RAID1 lets you do this. In addition, don't you get a little extra benefit from this in the form of further improvements in multithreaded reads? (ability to service up to 3 read requests simultaneously, although it doesn't help you at all for writes...)

      --
      the real at&t mix
    6. Re:Is there such a thing as... by Anonymous Coward · · Score: 0

      Another advantage is that one could implement this 3 hot disk RAID1 in a way where reads gets done by all 3 disks at the same time. Then the results are compared and the majority wins; one small step in fighting bit rot.

  14. And the alternative is? by wsanders · · Score: 1

    A sun D1000 loaded with latest-generation 300GB disk drives? Not a bad solution, slow, and not the cheapest.

    Apple X-serve RAID? Cheapest - does it work reliably with Linux or Solaris? Word in the street is that it does, but I have not seen a demo yet.

    We're actually going with recycling our ancient D-1000s and A-1000s with no-name 300 GB SCSI drives. Pretty old school, but reliable.

    --
    Give a man a fish and you have fed him for today. Teach a man to fish, and he'll say "WHERE'S MY FISH, YOU IDIOT?"
  15. Backing up HDDs is very hard by AmiMoJo · · Score: 2, Interesting

    With recent articles on HDDs not being very good for redundancy (because they often fail at the same time if they are from the same batch, or fail because of things like electrical spikes which affect all drives in an array) it is clear that HDDs are not an ideal backup medium. I use an external 2.5" HDD which is totally disconnected from the PC and everything else when not in use (to avoid power surges etc), but only for critical data as my machine has 1.2TB of HDD storage.

    Optical discs are a joke - 4.3GB is just not enough. Larger formats exist but are relatively expensive. Tape is expensive per MB and slow, plus it isn't random access and not suited to anything but slow full backups. MO is too small and expensive.

    It seems like the best bet is something like a Century Tower - basically a USB enclosure that can take up to 4/8 drives. Keep it totally disconnected when not in use, and use RAID 0 mirroring with drives from different manufacturers.

    --
    const int one = 65536; (Silvermoon, Texture.cs)
    SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    1. Re:Backing up HDDs is very hard by operagost · · Score: 3, Informative

      Optical discs are a joke - 4.3GB is just not enough. Larger formats exist but are relatively expensive. Tape is expensive per MB and slow, plus it isn't random access and not suited to anything but slow full backups.
      Your knowledge is out of date. For example, a SuperDLT 640 backs up at 32 MB/s with compression. Slower than a disk, but not "slow". Sequential access: well that's a given. Only suited for full backups? That's news to my company. Even daily incrementals and differentials are usually hundreds of megabytes or a few GB, which negates the small spool-up time of the tape. Besides, most modern tapes now store metadata on an internal chip so that an on-tape index does not need to be searched.

      use RAID 0 mirroring
      RAID 0 is striping. You probably mean RAID 10 or RAID 0+1.
      --

      Gamingmuseum.com: Give your 3D accelerator a rest.
    2. Re:Backing up HDDs is very hard by Sketch · · Score: 1

      It seems like the best bet is something like a Century Tower - basically a USB enclosure that can take up to 4/8 drives. Keep it totally disconnected when not in use, and use RAID 0 mirroring with drives from different manufacturers. ...and hope you don't have a fire.
      --
      -- OpenVerse Visual Chat: http://openverse.com
    3. Re:Backing up HDDs is very hard by rrohbeck · · Score: 1

      Hard? Why?

      mt -f /dev/nst0 eod
      tar cvbf 512 /dev/nst0 / --exclude /proc --exclude /mnt --exclude /sys --exclude /media --exclude /dev

      Every now and then you could do an image backup with
      dd if=/dev/hda of=/dev/nst0 bs=64k
      so you're able to restore your drive quickly. Works fine even on a live filesystem if it's the journaling type.

      And if you're on Windows, install cygwin first, or boot Knoppix for an image backup.

      Oh, of course you'll need a tape drive. Yes, you can do the same with optical disks but I don't trust CDs and DVDs for long term storage.

      You can get used tape drives dirt cheap on ebay, like $100-200 for a DLT8000, or $300-700 from normal dealers. Yeah, they're only 40 GB, but you probably don't need to backup your ripped DVDs every day.

    4. Re:Backing up HDDs is very hard by AmiMoJo · · Score: 1

      I think you managed to totally miss the point there. Quite spectacular really, congrats.

      If I was going to only need 40GB tapes, I wouldn't bother. I'd use a USB HDD. Much easier to work with. It's not like I need to archive my backups for years, I just need one that works when my main HDD breaks.

      I was talking about a system with 1.2TB of data. That would need over 30 tapes to back up, not even counting incrementals. Not DVD rips either, renders and associated data which cannot be easily replaced except by duplicating the work. As I said, DVDs are pathetic. I can't afford the kind of backup system I need.

      One thing I would love to know is how reliable HDDs that are not used much are. For example, if I save a project to a 500GB HDD and then put it in a cupboard for a year, what are the chances it won't spin up?

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    5. Re:Backing up HDDs is very hard by AmiMoJo · · Score: 1

      In terms of risk, I get power surges all the time, and so do most places I have ever checked out. Lights dimming etc. On the other hand, I have never actually seen a house on fire. I saw one burned out once... but, looking at it, I think a fire is probably not something I'm that worried about. My life would be screwed anyway.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    6. Re:Backing up HDDs is very hard by kasperd · · Score: 1

      Works fine even on a live filesystem if it's the journaling type.
      you shouldn't rely on that. You are not reading it atomically. Data can change while you are reading the drive. The image you end up with could be in an inconsistent state. If you take the image and write it back to disk, I would expect the file system driver to replay the journal on the first mount and mark the file system clean. But just because the file system driver flips a flag to say the file system is good doesn't mean it has fixed the inconsistencies it does not know about.

      How likely is it to go wrong? I cannot give you the numbers, but obviously the more write activity is going on while creating the image, the higher probability. I'd force a full fsck of the file system after restoring and be prepared to handle loss of a few files. I'd much rather use tar to make a backup by reading through the file system. Of course you can also choose to make seperate full backups in each way.

      Some people have suggested, that you can use LVM to make a snapshot of a live file system atomically. I haven't tried it, but it should work, unless there is a kernel bug. Of course I have heard of nasty kernel bugs, such as some kernel versions where directly reading the device could corrupt the file system. (In which case it will be nice to have a backup).
      --

      Do you care about the security of your wireless mouse?
    7. Re:Backing up HDDs is very hard by Anonymous Coward · · Score: 0

      I would suggest you go read up on tape libraries and LTO 3 Ultrium tape capacity. The problem is you are on the entry level for how much data you want to back up, and you may find the proper solution a little expensive. 1.2TB is not a lot of space to deal with, but it does require a tape drive, and optimally a tape library. I do not know where your 30 tapes notion comes from, as LTO3 has quite a large capacity.

      Any other solution other than tape is not the right direction for your budget.

  16. Re:Criticisms? by Anonymous Coward · · Score: 0

    Why is there even a criticisms section?

    OK, he's not always right and may be egotistical...

    And that makes him different from other people how?

    Linus Torvalds is constantly getting in disputes with kernel hackers and such. There's no "criticisms" section on his entry?

  17. raid data recovery by ak_hepcat · · Score: 1

    Oooh, and this just happened to me a few weeks ago. well, not quite, but close enough.

    I had an LVM container that sat on a RAID-1 volume go bad.

    the lvm tools couldn't reconstruct the container, so I effectively 'lost' my partitions.

    There wasn't any program I could find which would scan the raid volume for the data partitions,
    so I ended up cobbling one together on my own, out of the sources in the ext2-tools distro.

    And yes, I did get my data back, and no, i'm no longer using LVM containers.

    --
    Support FSF: Stop thinking with your wallet, and think with your imagination. (cc/non-commercial)
  18. I'm trolling, ignore me. by spun · · Score: 1

    Oh, I'm just trolling. Ignore me. It was mostly an excuse to make a "hack the gibson" joke. It was a dumb joke anyway.

    --
    - None can love freedom heartily, but good men; the rest love not freedom, but license. -- John Milton
  19. Whatever you want, linux md RAID-1 can do it by fnj · · Score: 1

    how would I implement a mirror, but with 3 drives? Does linux 'md' do this? How about any controllers?


    Linux md RAID-1 allows you to replicate to n number of drives, PLUS set m more drives as spares that will be automatically substituted for failed drives without intervention. You can spread the drives among as many controllers as you want.

    Of course you need off site backups too (fire, theft, lightning, human error).
    1. Re:Whatever you want, linux md RAID-1 can do it by WuphonsReach · · Score: 1

      A very handy feature. After all, if you're going to have a RAID1 + hot-spare setup, there's some advantages to just making it a 3-way active mirror instead. When one of the primary drives dies, you don't have a recovery window while the hot-spare syncs up with the array.

      The only downside would be that the hot-spare drive gets used and may suffer from wear-and-tear more then a hot-spare drive that spends its time powered down.

      On the flip side... you don't have to sit and wonder if that hot-spare drive will work correctly when it's finally needed.

      --
      Wolde you bothe eate your cake, and have your cake?
  20. Solution:RAID 50, 2 spares + RAID 50 backup + tape by Anonymous Coward · · Score: 0

    Why don't people just run hot spares in their arrays? I lost a drive in my primary RAID 50 array and it re-built it from the hot spare in less than an hour. Now I'm down to "only" 1 hot spare left and I have plenty of time to replace the other one before I get worried.

    Of course we also have 6-hour off-site snapshots to another RAID 50 and 3 month tape archives.

    Keep in mind this is for an academic computer system, so we're pretty happy with the level of reliability.*

    *Except that when some user creates 78,000 files in his home directory it causes rsnapshot to fail because the GNU cp command can't handle that many files in one directory...

  21. Cheap Solution by SwabTheDeck · · Score: 2, Informative

    I'm a big fan of the hard drive->freezer method. It has been alleged that putting a broken hard drive into a freezer can sometimes make the data readable again for a short period of time.

    1. Re:Cheap Solution by Jjeff1 · · Score: 1

      It's true, but only for specific problems. We used to call it stiction at the shop I worked at. I don't think we really knew what we were doing, but if the drive didn't spin up, putting it in the freezer could fix it. It usually fixed it enough to spin up and get your data back, but that was good enough.

    2. Re:Cheap Solution by Intron · · Score: 1

      My wife's laptop drive (30 GB Travelstar) went bad and I did this. After trying everything else, I put it in the freezer for a couple of hours. It brought it back to life long enough to get most of the data off, then died for good.

      --
      Intron: the portion of DNA which expresses nothing useful.
    3. Re:Cheap Solution by Anonymous Coward · · Score: 0

      I can vouch for this method too. I've made a pretty penny off distraught college students whose laptops' drives barfed and they didn't have backups on CD. Most of the time I didn't even get past my minimum billing time but those calls at 1AM get a little pricey.

    4. Re:Cheap Solution by RalphTheWonderLlama · · Score: 1

      Yeah it only works for a very specific problem which is a low percentage of hard drive failures. Basically, don't try it if you really want your data back. You'd be better off sending it to a data recovery company. The less you do to it after the failure, the better chance of recovery.

      --
      simple, fast homepage with your links: http://www.ngumbi.com/
  22. sorry, that's wrong... by HalfOfOne · · Score: 2, Informative

    This is good reading:
    http://storagemojo.com/?p=383

    Short synopsis for those who don't want to read it: The rebuild process is intense enough to cause secondary failures in many more cases than you'd think. Because you haven't seen it yet is not indicative of the overall population, and sysadmins are payed to be prepared.

    The rest of your post is arguable, but it's more a matter of opinion and practice than anything else.

    1. Re:sorry, that's wrong... by jandrese · · Score: 1

      The conclusions from that article seem to contradict some of the sources. For instance, they talk about how there is no infant mortality, but then link to the Google study that shows that yes, there is infant mortality (although it may not be as strong as some people think). Infant mortality is not one of the things I've had much trouble with though, so YMMV.

      I've never seen the second drive die during a rebuild (although this is typically RAID1_0, not RAID5), but that may be more a factor of the drives tend to work very hard regardless, so the rebuild is not much different from their normal usage pattern.

      --

      I read the internet for the articles.
    2. Re:sorry, that's wrong... by zeet · · Score: 1

      I've been much more comfortable with my media storage boxes since I implemented regular RAID integrity checks. Just knowing that we're likely to catch a disk failure early is very comforting. Also, I know that if I do a recovery, I can set the recovery rate nice and low to keep from stressing the remaining disks. Since the media is backed up anyway (on the original CDs and DVDs) but recovery would be quite annoying, it seems like a sensible compromise.

      For servers? Rsync images to physically distant servers, as far as I'm concerned, and we're not a big shop. Disk is just too cheap to justify anything less than that as a baseline, as far as I'm concerned. Our entire critical dataset compresses to only a few dozen GB, easy enough to put on disks hanging off of several machines. If we had a bigger dataset I'd probably have to think about it harder, so I'm sort of blessed there.

    3. Re:sorry, that's wrong... by toddestan · · Score: 1

      The thing is, with a RAID set up you typically have a bunch of the same model of drive, usually bought at the same time from the same supplier, and have been running for the same amount of time in the same conditions. If some flaw takes down one drive, the chances of another drive going down for the same reason is a lot more likely than you might think.

      In other words, have backups.

  23. backups by hurfy · · Score: 2

    Besides having a backup not connected to system, i found simply having a spare disk to steal the circuit board off of to be a life saver :)

    I miss the old bigfoot drives we had, everyone said they had problems with them but it was always (in our case) the board that died NOT the disk. I saved a couple of those by swapping in a board for a 1 hour recovery.

    If you buy several HD for RAID or whatever buy one more and stick it on shelf for a rainy day. Along with a few utilities you can do 3/4's of what they do for $100 instead of $1000+

  24. The easy way to fix a wrecked raid by StreetStealth · · Score: 2, Funny

    Really, a wrecked raid can be fixed pretty easily if you have enough warlocks to get everyone a soulstone.

    --
    Your mind is clear / The things that you fear / Will fade with how much you / Believe what you hear
  25. Terminolgy update by sasdrtx · · Score: 2, Funny

    When a disk fails in a RAID, it becomes an AID.

    Or in the case of RAID-1, it becomes just an ID.

    --
    Most people don't even think inside the box.
  26. Lunch by Seraphim_72 · · Score: 3, Interesting

    I attended a small conference where the Kroll VP of Data Recovery was speaking. He came in, his assistant set up his power point stuff, made sure the projector was right etc. He then gave a very interesting talk about what Kroll could pull off of a drive, despite what had been done to it. By way of example he showed a slide of a burnt and bent hard drive - that came out of the sky when the shuttle broke up. They recovered 99% of the data on that drive. He also mentioned that they do the data recovery for all of the spook organizations in D.C.

    When we broke for lunch I got to sit at his table and we got to ask him all sorts of questions about their processes. He mentioned they have things they use that they have never patented because it would be too much of a leg up for both the competition and those that seek to destroy data. We tried to get him to tell us what we would have to do to a drive to make it unreadable. Mostly his answers to our "Surely this would make the data unreadable" queries were "You would think that would work wouldn't you?" Someone referenced his assistant who was sitting next to him and the VP said:

    "Him? No, no, no. (laughs) He is not my assistant, in fact he doesn't work for me at all. He is a lawyer for the company and is here to make sure I don't say anything I am not supposed to." The assistant then gave us one of those 'I could eat you alive' lawyer smiles.

    I walked out secure in the knowledge that short of melting the platters down the data can *always* be recovered.

    Sera

    --
    Slashdot, where armchair scientists get shouted down and armchair theologians get modded up.
    1. Re:Lunch by rthille · · Score: 1


      I've got those thermite packs against the drives in my server for a reason damn it!

      Actually, I suppose if I was really paranoid I could use the welding torch in the garage to melt the drives down, but I don't think I'd get as much for them on eBay...

      --
      Awesome furniture, accessories and cabinetry in Santa Rosa, CA: http://humanity-home.com/
    2. Re:Lunch by DamnStupidElf · · Score: 2

      I walked out secure in the knowledge that short of melting the platters down the data can *always* be recovered.

      Encrypt. I guarantee that even if the NSA can break AES, they won't do it for anything short of top secret cases that will never see the light of day. Breaking random drives encrypted with AES or any other modern cipher would disclose their ability to break that cipher and no one would use it anymore, removing their advantage.

    3. Re:Lunch by Anonymous Coward · · Score: 0

      A drive platter has a magnetic surface coating it and often when a drive fails, the read/write heads may collide with and scar this platter. It takes a very small amount of surface damage to prevent anybody from recovering a drive in this situation, including Kroll Ontrack (whose focus seems to be more and more on litigation and disaster prevention.)

      I've worked with engineers who were able to recover data from RAIDs that Ontrack could not, and whether those situations were mere coincidence, or the difference between going in and manually reconfiguring EVERYTHING, to running a piece of software, I'm not sure. All of the top firms in the industry have similar cases. Sometimes somebody does everything to retrieve information, fails, and somebody else is able to.

      As far as equipment, the lead firms use essentially the same equipment. In Ontrack's case, they have designed some proprietary tape recovery utilities, but do not have anything earth shatteringly unique processes or patents that aren't available to anybody else. It's just expensive equipment and lots of technician experience.

      Damage (beyond very, very minor) to the platters, shifting/realigning the platters and overwriting information prevents it from being recoverable. In a lot of cases drives damaged from fires need to have electronic systems replaced in a clean room where the contamination from ash can be eliminated.

    4. Re:Lunch by citizenr · · Score: 0

      its called Marketing, he was selling you bullshit, and you ate from his palm like a little monkey

      --
      Who logs in to gdm? Not I, said the duck.
    5. Re:Lunch by Anonymous Coward · · Score: 0

      Do not DISPARAGE my monkeys! They all have Masters in Funkyfying, thank you!

    6. Re:Lunch by Kirth+Gersen · · Score: 1

      I could be wrong, but you seem to me to be describing a VP of *Marketing*, not a VP of Engineering. He does not seem to have given any technical responses, and you mentioned that his assistant did the technical side of his presentation.

      I am also guessing that the guy next to him later was not a lawyer, because from what you wrote (not quite clear to me) he was the same person who set up the projector. Lawyers don't do menial stuff like that.

      I'm guessing that that person was someone in Dilbert's role: he was only there so that the VP could shift blame onto him if the VP made a completely ridiculous technical statement.

      Btw, I do know something about magnetic media. I have seen a head picking up the edges of an adjacent track, for instance.

      You understand that data recovery companies don't publish charges, right? That they ask you how important your stuff is before they give you a quote? You know what that means?

    7. Re:Lunch by Seraphim_72 · · Score: 1

      Gee, I don't remember you at the table for lunch.....so you never got to hear us ask the lawyer about being a lawyer. I also don't remember you at th presentation, where the lawyer help set up the vice presidents stuff...see people are underneath someone and are nice help out - you know cuz that's how people are. How about you not correct someone about facts when you were not there, were not involved and have no clue what you are talking about. And when did I say anything about what they charge? It was a technical presentation to a technical audience.

      --
      Slashdot, where armchair scientists get shouted down and armchair theologians get modded up.
  27. Truly astonishing...but so simple by hrrY · · Score: 2, Informative

    As long as you know how the RAID config was setup(striping size), most disk recovery programs will do the job just fine. GetDataBack NTFS is functional and simple tool to use as long as you know how the disks were setup. Including RAID5...I've rebuilt 3 RAID5's and a shitload of 0's, 1's, and 01's. You should see the look on some of these people's faces after your done(with all 18+hrs of it...)The problem usually I find is that if you recovered the data then the customer is usually under the impression that you *fixed* the disk and they can keep on using it without replacing it...so yeah, it's not a big deal it's just a question of how much time you want to spend and how much time you have to finish the job.

  28. But a great battle cry! by Roadkills-R-Us · · Score: 1

    ``Still, it provides an interesting look into the world of data after death.''

    Death before data!!!

  29. Two drive failure in RAID 5 by Lost+Penguin · · Score: 1

    Many complete RAID 5 failures can be "forced" back online by a good hardware RAID card BIOS, saving the money that would have been paid to Ontrack.
    That said, RAID is no substitute for a backup.

    All you need is the ability to read and write from at least one of the two failed drives, even if the drive has some bad sectors.
    Install a new drive in place of the drive that is completely dead, and force the "only half dead" drive to work.
    Many times you can recover your data this way.

    Newer RAID cards can even fail "stripes" in an array, to "write around" bad sectors on hard drives while not losing the entire array.
    You may lose the data that was in the "bad" stripe, but the rest of the array still contains useful data.

    --
    I am the unwilling control for my Origin.
  30. Re:Long-winded advertisement^H^H^H^H^H^H^H^H artic by chartreuse · · Score: 1

    It doesn't.

  31. Removable drives by Mandrel · · Score: 1

    An alternative to a drive in a removable bay frame is in a SATA external enclosure. It has the advantage of a separate power supply (I've known PC power supplies to fail in a way that sends mains through the DC lines, frying everything). An external RAID1 (mirror) disk on hot-plug SATA is also something you can quickly grab in case of a fire, or to take somewhere else to mount read-only.

    1. Re:Removable drives by greg1104 · · Score: 1

      I put only the most disposable of my data on external drives. There are many reasons why manufacturers warranty external drives for considerably less time than internal ones (in some cases, 1 year vs. 5 years):

      1) While separate, the power supplies in external drives aren't likely to be even as good as the one in your PC.

      2) A surge sufficient to blow out things inside your PC could easily make its way out eSATA, USB, Firewire, etc, so I don't how much the argument of an external power supply saving you applies.

      3) External enclosures are even more prone to vibration issues than case-mounted ones, and dependinging on the design the cooling profile may not be any better than the problematic units I described either.

      At least eSATA solves one of the problems external units have suffered from, which is that USB/Firewire ones almost never report SMART data, so you don't even have that to help you.

    2. Re:Removable drives by Mandrel · · Score: 1

      Good points. The external case does run quite hot, though one other advantage of an external disk is protecting against the main box cooking due to cooling failure.

      I think I'll move the mirror inside and put a third drive in the external case to store automatic backups.

  32. Data recovery is never an easy process by cyanics · · Score: 3, Interesting

    Last week, i did a data recovery on a client that had multiple disk head crash from a power outage, or a kick or something. The drives were resulting in a click-seek, which for the most parts is unrecoverable.

    Popped in a Helix disk, and checked what the MFT was doing. Low and behold, no MFT, no boot sector, and a huge list of bad sectors. Basically, the crash had resulted in a bad sector in the bad sector table, and all over the first portion of the disk.

    These were 200GB disks, but eventually I was able to get a sector repair program to read through and do a non-destructive repair. Data was safe, but was now corrupt. Next step was to repair the data, and I was finally able to just use chdisk to repair.

    Eventually, it was back to real data, and was able to push the data over to a new replacement hard drive.

    Told the client to invest in RAID 1, but seriously doubt they would be willing to spend that $100 for the RAID. Instead, they prefer to pay $1000 for a repair.

    BACKUPS. make lots of BACKUPS. RAID your stuff, and get those backups offsite. Do them regularly. Seriously, it would save your ass if something happens. For example, I have a LAN HD that is parked out in a shed in my backyard. Total cost $200, and has already saved my ass 2x.

  33. Backups? by Anonymous Coward · · Score: 0

    Anyone who things that RAID is enough for data protection, shouldn't be in IT. Now, there are some nifty solutions, such as the stuff from Copan, but there isn't an alternative to backing up one's data, and off-siting it.

    Again - if you believe that you shouldn't back up the data that's on a RAID array, get the fuck out of the profession - we don't need you, and you're going to cause serious harm.

  34. Newbie Question... by Anonymous Coward · · Score: 0

    How can you recover a RAID 5 array if your disk controller fails?

    For instance, in a home desktop-turned-server with a motherboard-chipset-based controller and 3-5 disks in the array.

    If the motherboard fails and is replaced, won't the disks be overwritten when reconfiguring the array?

    1. Re:Newbie Question... by Wesley+Felter · · Score: 2, Informative

      If the motherboard fails and is replaced, won't the disks be overwritten when reconfiguring the array?

      If you use a reputable controller (i.e. one that costs more than your entire motherboard), it will read the configuration off the disks instead of overwriting them.

  35. TFA is just an advertisement for Kroll Ontrack by Swave+An+deBwoner · · Score: 1

    TFA is just an advertisement for Kroll Ontrack. Basically "you can phone Kroll Ontrack ..", "the Ontrack data recovery specialist will ..", WTF?

  36. Yes, triple backups by Namlak · · Score: 1

    After all, we're supposed to replicate data 3 times, right?

    That's why my server has "New Folder", "New Folder(2)", and "New Folder(3)" on it. :^)

  37. RAID5 is good, not flawless by swordgeek · · Score: 2, Informative

    As much as this stuff is cool, it's going to be insanely expensive to restore data from these guys.

    Data integrity and uptime are served by RAID5. If it's not good enough, then it should be backed with mirroring (RAID5+0) or some form of dual-parity RAID (RAID-DP from NetApp, etc.).

    But data gets lost or corrupted, even without disk failures. Backups are the place where data recovery is done. DO YOUR BACKUPS!

    --

    "People who do stupid things with hazardous materials often die." -- Jim Davidson on alt.folklore.urban
  38. What about ZFS? by An+dochasac · · Score: 1
    ZFS makes some types of recovery simple:
    http://docs.sun.com/app/docs/doc/819-5461/6n7ht6qt 0?a=view

    For example:

    Once you have determined that a device can be replaced, use the zpool replace command to replace the device. If you are replacing the damaged device with another different device, use the following command:

    # zpool replace tank c1t0d0 c2t0d0
    # zpool status tank
        pool: tank
      state: DEGRADED
    reason: One or more devices is being resilvered.
    action: Wait for the resilvering process to complete.
          see: http://www.sun.com/msg/ZFS-XXXX-08
      scrub: none requested
    config:
                    NAME STATE READ WRITE CKSUM
                    tank DEGRADED 0 0 0
                        mirror DEGRADED 0 0 0
                            replacing DEGRADED 0 0 0 52% resilvered
                                c1t0d0 ONLINE 0 0 0
                                c2t0d0 ONLINE 0 0 0
                            c1t1d0 ONLINE 0 0 0
  39. And the operative words being regular backups by Colin+Smith · · Score: 1

    Guys, if you're doing regular backups Would that be floppies or CDs?

    But pretty much agree with everything else you've said... Though a hot spare is always nice.

    --
    Deleted
  40. RAID is not backup! by b0s0z0ku · · Score: 1
    And people who treat it as such are ignorant. The RAID drives are still on the same server, thus vulnerable to electrical surges, fire, malicious action, etc. Far better to back up to tapes or external drives that are isolated from the machine when not backing up and keep the media in a fireproof safe or deposit box somewhere off-site.

    -b.

  41. the article annoyed me by Anonymous Coward · · Score: 0

    I detest Tom's Hardware for just your point. The article assumed these were hardware (like 3ware) raids. The reviewer said the formats are highly proprietary, making them difficult to decode and recover. TH is nothing but a Windows fanboy suckbutt site.

    Why not Linux soft raid in a Samba server? Soft raid 1 is screaming fast on reads, great for photographers scanning the day's work, and you'll never see the read lag over the network. The format is well known. And all raid is soft anyway, even if the code is held in a ROM Bios.

    Look at smeserver.org, it automates raid. ClarkConnect ain't bad, either. Either one with a Roseswill SATA card without raid and a couple of monster WDs in an old HP Pavilion that used to run Win98, you're good to go. And keep your stacks of backup DVDs in a safe deposit box.

  42. Mod me ... you know ... by Anonymous Coward · · Score: 0

    Isn't "RAID array" redundant?