HDD failures

Discussion in 'Linux, BSD and Other OS's' started by donkey42, May 15, 2008.

  1. donkey42

    donkey42 plank

    Likes Received:
    9
    Trophy Points:
    38
    the other day i had 2 Maxtor HDD go down, now the 160Gb HDD was fixable by doing a Low Level Format

    BTW: i know LLF doesn't really exist anymore, but, the "term" is still used, but, all it really means nowadays is zero fill (write a zero to every part of the HDD)

    anyway i blanked the 160Gb HDD with DBAN (took about 4 hours, but, i have a working HDD)
    so, i'm back on Kubuntu but i still need another HDD, possibly i'll try Debian, but i'm defiantly buying a Seagate HDDs use liquid bearings obviously unlike maxtor

    maybe seagate (who owns maxtor) will start using liquid bearings on maxtor HDDs, pwease seagate
     
  2. Anti-Trend

    Anti-Trend Nonconformist Geek

    Likes Received:
    118
    Trophy Points:
    63
    You can also zero-fill a drive on Linux, UNIX, or OS X by using the built-in 'dd' command. Assuming the drive you wanted to zero fill was designated as /dev/sdc:
    Code:
    dd if=/dev/zero of=/dev/sdc
    dd is an extremely handy tool. You can even use it to make copies of CDs, DVDs, video games, even whole hard disks. Let's say we have a disc we want to copy in /dev/cdrom:
    Code:
    dd if=/dev/cdrom of=/home/donkey/MySweetDVD.iso
    :cool:
     
  3. donkey42

    donkey42 plank

    Likes Received:
    9
    Trophy Points:
    38
    "dd" sound very useful, time for a bit of research i think

    BTW: thankies
     
  4. megamaced

    megamaced Geek Geek Geek!

    Likes Received:
    0
    Trophy Points:
    36
    Ahh AT always comes up with the goods :D
     
  5. donkey42

    donkey42 plank

    Likes Received:
    9
    Trophy Points:
    38
    as always

    BTW: i know i can be a bit slow (blame the brain damage for that) but, i actually know more than i think i know, i've just got to pull it out of this shed i call a head

    am i correct in saying: to install the kernel sources you need to download the 2.6.xx sources and apply the HWF gutsy patch to them, then install them ?[ot]told you i'm a bit slow at times[/ot]
     

Share This Page