Unable to mount USB NTFS WD MyBook in 8.10

Asked by Joao

Hi!
I can see it on my file manager, but once I try to mount, I get the following message

"Cannot mount volume
$MFTMirr does not match $MFT (record 1). Failed to mount '/dev/sdb1':In/ut-fel NTFS is either inconsisten, or you have hardware fauls, or...

It works fine under windows (I have a partioned harddrive with double boot).
My system is the just loaded 64bit 8.10.

I am not sure what kind of information is needed to help, but let me know and I will try my best.

Thanks!

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu util-linux Edit question
Assignee:
No assignee Edit question
Solved by:
marcobra (Marco Braida)
Solved:
Last query:
Last reply:
Revision history for this message
marcobra (Marco Braida) (marcobra) said :
#1

Open a terminal from the menu Applications → Accessories → Terminal and type:

mount

to check your device is not mounted, then type:

sudo -i

ntfsfix /dev/sdb1

then try to mount again...

You can also force mounting, type:

ntfs-3g /dev/sdb1 /put/here/your_mount/point_dir -o force

example:

ntfs-3g /dev/sdb1 /media/disk_ntfs -o force

Hope this helps

Revision history for this message
Best marcobra (Marco Braida) (marcobra) said :
#2

Better:

Open a terminal from the menu Applications → Accessories → Terminal and type:

mount

to check your device is not mounted, then type:

sudo -i

give your user password when requested, you don't see nothing when you type it, then press enter.

Then type:

ntfsfix /dev/sdb1

then try to mount again...

You can also force mounting, type:

ntfs-3g /dev/sdb1 /put/here/your_mount/point_dir -o force

example:

ntfs-3g /dev/sdb1 /media/disk_ntfs -o force

Hope this helps

Revision history for this message
Joao (joao-stoltz) said :
#3

It did not work.
This is a bit too complicated for me.
I guess I will go back to windows.

Revision history for this message
marcobra (Marco Braida) (marcobra) said :
#4

Have you replaced the "/put/here/your_mount/point_dir" in the suggested command

ntfs-3g /dev/sdb1 /put/here/your_mount/point_dir -o force

with a real mount point dir (simply a directory name) of your pc...?

Revision history for this message
Joao (joao-stoltz) said :
#5

The Drive appeared in my desktop once i ran a chkdsk /f from dos.
And then it disappeared again the next time I logged in, so I had to login windows and rerun the chkdsk command.

Revision history for this message
J (jpnmsantos) said :
#6

Thanks. It did it for me.

With linux I was getting "Cannot mount volume $MFTMirr does not match $MFT (record 0). Failed to mount ... "
WinXP couldn't read the device, kept rebooting as soon as I connected the drive. always with the same BSOD
"ntfs.sys" "DRIVER_IRQL_NOT_LESS _OR_EQUAL" "STOP: 0x000000D1 ..."

ntfsfix fixed it ... linux and windows both read the drive ... thanks agains for the tip.