Results 1 to 3 of 3
I have a 120gb western digital drive which was previously the second hard drive on a computer which crashed.
It is a 3 partition drive formated by windows XP.
The ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 07-09-2010 #1Just Joined!
- Join Date
- Jul 2010
- Posts
- 1
Can read sda1 but not sda2.
I have a 120gb western digital drive which was previously the second hard drive on a computer which crashed.
It is a 3 partition drive formated by windows XP.
The 1st partition (sda1) reads perfectly on Knoppix 6.2, but I can not access the other two partitions.
I am not familiar with linux, but had used knoppix before to access drives without problems.
Any help would be greatly appreciated.
-Daniel
- 07-10-2010 #2Linux User
- Join Date
- Jan 2007
- Location
- cleveland
- Posts
- 468
welcome to the forum
1. did you move jumpers so drive is a master?
2. what filesystem is on the different partitions? If ntfs,
try "ntfsmount" in lieu of "mount"the sun is new every day (heraclitus)
- 07-10-2010 #3Linux User
- Join Date
- Dec 2009
- Posts
- 252
If the Drive has crashed ... and you just want the data ...
The first thing you should do is read all information that's there in one go.
Considering the drive has only 120G that shouldn't be a problem useing:
dd_rescue
http://wiki.linuxquestions.org/wiki/Dd_rescue
Example:
# dd if=/dev/hda1 bs=4k conv=noerror,sync > hda1.img
Later you can mount the filesystem from the files:
# mount hda1.img /mnt/hda1/ -o ro,loop
Additional you can tell the fs when mounting:
# mount hda1.img /mnt/hda1/ -t ntfs -o ro,loop
Or copy the img onto an working HDD .... starting windows


Reply With Quote
