up vote 2 down vote favorite
2
share [g+] share [fb]

My PC has had trouble recently but now it won't boot into windows. I put in a new HDD and reinstalled windows but now I want to get the info off the old HDD.

What linux distro can allow me to read and possibly repair my old hard drive? I've used Knoppix a while back and it was good, but is there something I can download that is much smaller than 700MB? The distro should have NTFS write abilities too.

link|improve this question

76% accept rate
feedback

closed as off topic by Will Apr 28 '11 at 13:29

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

13 Answers

The Ultimate Boot CD tends to be a good choice. The iso is about 115MB, and it includes most of the great linux support utilities. There are still issues with Linux being able to write to NTFS (Meaning fixing your windows file system is not too likely), but read should work from any relatively modern distribution.

Good luck, whatever you decide to use.

link|improve this answer
feedback

I swear by SystemRescueCd. It offers all the tools you could possibly need to save a system. This includes dd/ddrescue (for drive copying/recovery), parted/GParted (disk partitioning), ntfs-3g (to read/write those pesky ntfs partitions), etc. It has an X server, should you need one, supports network booting, and uses ZSH instead of Bash, so it's a tad faster and will offer to correct mistyped commands.

The x86 build is <= 200 MB.

One other note: it has testdisk, which I have used before to find lost partitions after accidentally nuking the Master Boot Record (MBR).

I also recommend SpinRite, but it's not free. SpinRite can save almost any malfunctioning hard drive. It's a 200KB floppy disk image that can be run from a CD as well. SpinRite could probably make your malfunctioning hard drive work again.

link|improve this answer
+1 for SystemRescueCd. And nice one for mentioning testdisk. It's a fantastic app, I used it just today to help a co-worker undelete a bunch of files. You can also get it as a standalone app here - cgsecurity.org/wiki/TestDisk – Simon P Stevens Jul 21 '09 at 18:09
feedback

Damn Small Linux? It's about 50MB, and I believe it will read NTFS.

link|improve this answer
feedback

+1 to akdom's warning about writing NTFS - its still pretty dodgy. (reads are no problem).

If you are trying to repair your old hdd, you may have a lot of trouble. If you are just trying to rescue files and move them to your new hdd, here's what I recommend.

  1. Pick a linux livecd (all the ones suggested above will work fine).
  2. Set up an ftp server on a different machine.
  3. Boot to the old machine using the livecd
  4. Mount the old hard drive.
  5. Copy any files that need rescuing onto the ftp server
  6. Boot to windows on the new hard drive.
  7. Copy your files down from the ftp server.

Of course this can be even easier if you have access to a USB hdd of some kind that can act as the go-between instead of an ftp server.

link|improve this answer
feedback

I found puppy linux pretty easy to use for a small distro (88MB) http://www.puppylinux.org/

link|improve this answer
feedback

Regarding NTFS writing, the problems are only if you are using the NTFS support in the kernel. NTFS-3g is stable and supports both reading and writing to NTFS.

link|improve this answer
feedback

Backtrack (http://www.remote-exploit.org/backtrack.html), although not specifically designed for repairing, also features some forensics stuff which might be of help.

link|improve this answer
feedback

I swear by knoppix for this kind of stuff, it'll read and write NTFS no problem, and has a staggering amount of software on the disk so it covers a lot of scenarios.

link|improve this answer
feedback

As an alternative to an FTP server as mentioned by Justin Standard, I usually just borrow a FAT32 formatted external hard drive and move the files over there. Other than that, things are the same.

link|improve this answer
feedback

MBRFIX.exe - 143Ko - is a good solution
(mbrfix.exe, not fixmbr which comes from Microsoft!)

If you can hook up your hard drive to your computer with an external usb SATA hard drive reader (as in alt text), you can:

  • check if your partitions are still there 'MbrFix /drive 1 listpartitions' (this is the most important)
    if not... see previous solutions
    if they are, SAVE YOUR MBR! (MbrFix /drive 1 savembr c:\MyMbr), that way the all 512 octects of your MBR are saved included the last 76 containing the partition table
  • reset your bootlader written in this MBR
    for instance: MbrFix /drive 1 fixmbr /vista /yes
    You should even be able to reinstall Windows on that partition if you want

Note: '/drive 1' refers to your second disk (the one plugged in through USB), the disk '0' is the one within your computer. If you have more than one drive in your computer, adjust this number accordingly

Note2: Whatever goes wrong, you can still revert to the present state with:

MbrFix /drive 1 restorembr c:\MyMbr

Note3: While you are at it, save the MBR of your current functioning drive!
On a USB stick!

link|improve this answer
feedback

Trinity Rescue Kit

http://trinityhome.org

link|improve this answer
feedback

I've used Slax and Knoppix extensively in the past.

link|improve this answer
feedback

I have to second SystemRescueCD. It has powerful tools on the commandline and GUI (including for hard drive copying and recovery to other media or over network), NTFS read/write capabilities, low system requirements for those older computers, and it takes up less than 1/2 of a CD. There is much documentation and some helpful tips. Check out the website for more tips on how to use the CD: http://www.sysresccd.org/

Another Linux rescue CD is RIPLinux. Just 88MB .iso to download. Never tried it, but it was pretty popular a year or so ago, and has a new version out now. http://en.wikipedia.org/wiki/Recovery_Is_Possible

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.