解决Ubuntu不能挂载ntfs格式硬盘

以前都是自动可以挂在NTFS硬盘的,可是现在不能挂载了。搜了一下 这里有办法 http://forum.ubuntu.org.cn/viewtopic.php?t=313930

例如你是

Error mounting /dev/sdc10 at /media/rudy/info: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000" "/dev/sdc10" "/media/rudy/info"' exited with non-zero exit status 14: The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sdc10': 不允许的操作
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.

这个 /dev/sdc10不能挂在

那么在终端下执行

sudo ntfsfix /dev/sdc10 

 结果出现 以下表示成功

NTFS partition /dev/sdc10 was processed successfully.

如果没有ntfsfix,可以先安装一下,默认15.10自带这个工具 

原文地址:https://www.cnblogs.com/or2-/p/4945828.html