0

I installed Ubuntu from windows 8 and selected option to format just windows 8. But after full installation of Ubuntu I can't even find my d drive files. It contains very important files. Please help!

otaku
  • 1

1 Answers1

1

Your "d" drive will now be something like /dev/sda4 or so, depending on your partition layout. You can do "sudo mount /dev/sda4 /mnt", where 4 can be changed to the partition number, to mount the partition on /mnt so you can see the contents with "ls /mnt". When done with that partition, or if that one is the wrong one, type "umount /dev/sda4" to unmount it.

Kyle H
  • 1,044
  • 6
  • 7