红联Linux门户
Linux帮助

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

发布时间:2015-11-08 09:58:54来源:linux网站作者:c3tc3tc3t

以前都是自动可以挂在NTFS硬盘的,可是现在不能挂载了。


例如你是:

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,可以先安装一下,默认ubuntu 15.10自带这个工具。


Ubuntu 12.04开机自动挂载ntfs分区:http://www.linuxdiyf.com/linux/3539.html

Ubuntu之开机自动挂载NTFS解决chmod对NTFS失效:http://www.linuxdiyf.com/linux/1043.html

Windows 8与Linux双系统挂载不了NTFS分区的解决办法:http://www.linuxdiyf.com/linux/9865.html

Linux下挂载NTFS格式分区:http://www.linuxdiyf.com/linux/7998.html