Recovering data on Windows with Ubuntu! Help!!

espaidermangg

Honorable
Dec 27, 2013
15
0
10,510
Hey guys, good night.

First of all sorry if my English is not very strong.

My father's computer crashed and I'm trying to get the data. I've gotten a Ubuntu into a pen, and I entered the computer without installing it from there, but I can not see the hard disk.

Could you tell me to do to display the disc, or any way to mount it?

Thank you very much.
 
Solution
From Ubuntu terminal, what you get with "sudo fdisk -l"?
If you see the hard drive (e.d. as /dev/sda), you can mount it's partitions with
Code:
mount /dev/sda1 /mnt
This will mount first partition onto /mnt folder. fdisk output will tell you how many partitions are there. To try another partition, first unount it with
Code:
umount /mnt
From Ubuntu terminal, what you get with "sudo fdisk -l"?
If you see the hard drive (e.d. as /dev/sda), you can mount it's partitions with
Code:
mount /dev/sda1 /mnt
This will mount first partition onto /mnt folder. fdisk output will tell you how many partitions are there. To try another partition, first unount it with
Code:
umount /mnt
 
Solution