0

I was working normally on my desktop computer with Windows 8.1, then my power supply stopped working, the PC shut down and it won't turn on again until I replace the power supply (which I can because it's December 31)

I used my converter to connect my FILES (D:) Hard disk via USB to my Ubuntu laptop (It has nothing to do with windows, windows is in another physical hard disk) and I get this error:

enter image description here

I've read this question, but it requires you to start Windows (I can't do it) I need some solution I directly on Linux.

Thank you beforehand!

1 Answers1

0

You may be able to get it working still from Ubuntu

Install ntfs-3g with

 sudo apt-get install ntfs-3g. 

Then run the ntfsfix command on your NTFS partition.

For example:

ntfsfix /dev/hda6

Make sure to change /dev/hda6 to whatever it actually is.

Once that finishes, try to mount again.

geoffmcc
  • 1,364