Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I have two hard drives, one where win7(C) is installed and the other ubuntu 12.04(D). I cant find the other files on D like movies and etc using ubuntu but i do find them running win7. How can I find the files running ubuntu whithout having to copy them over to C?

share|improve this question

1 Answer

Maybe your partition isn't mounted on your Ubuntu system. Type

sudo fdisk -l

and there you can show all partition table, types, sizes. You can mount using

sudo mount /dev/sdXX

where XX is number of partion (eg. sda5).

After you mount partion you can access all files from it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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