ubuntu 不能挂载NTFS U盘

问题:

Error mounting /dev/sdd4 at ...: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1001,gid=1001" "/dev/sdd4" "/media/iiai/LYZ"' exited with non-zero exit status 13: $MFTMirr does not match $MFT (record 0).
Failed to mount '/dev/sdd4': Input/output error
NTFS is either inconsistent, or there is a hardware fault, or it's a
SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows
then reboot into Windows twice. The usage of the /f parameter is very
important! If the device is a SoftRAID/FakeRAID then first activate
it and mount a different device under the /dev/mapper/ directory, (e.g.
/dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation
for more details.

 

解决方案:

sudo apt-get install ntfs-3g

看上面错误提示里的挂在路径 dev/sdd4

use:

sudo ntfsfix $path$

e.g.,  sudo ntfsfix /dev/sdd4  

就可以打开文件了

你可能感兴趣的:(ubuntu)