在 ubuntu 中打开不同的分区时出错

在 ubuntu 中打开不同的分区时出错

我通过在 NTFS 分区中的 Ubuntu 14.04 上安装 Windows 8 实现了双启动。我创建了另一个单独的 NTFS 分区,用于访问 Ubuntu 和 Windows 中的文件。最初它工作正常,但现在从 Ubuntu 打开两个 NTFS 分区时出现以下错误。

错误是

Error mounting /dev/sda3 at /media/gokul/Storage: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda3" "/media/gokul/Storage"' 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/sda3': Operation not permitted
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.

有人可以帮忙吗?

答案1

安装 ntfs-3g

sudo apt-get install ntfs-3g

并修复

ntfsfix /dev/sda3

相关内容