在 Windows 中

在 Windows 中

我在华硕笔记本电脑的 Windows 第一个主分区后安装了 Ubuntu 17.04。但现在我无法访问 Windows 分区。

Error mounting /dev/sda5 at /media/nisarg/New Volume: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,f‌​mask=0177" "/dev/sda5" "/media/nisarg/New Volume"' 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/sda5': 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 驱动器以只读方式安装,或者根本没有安装,则可能是因为 Ubuntu 认为它们的文件系统不干净,可能是由于休眠或文件系统损坏。请执行以下操作...

在 Windows 中

  • 启动进入 Windows
  • 打开电源控制面板
  • 选择change what the power buttons do
  • 选择change options that are unavailable
  • 取消选中fast startup
  • 关闭电源控制面板
  • 打开管理命令提示符窗口
  • 类型powercfg /h off
  • 类型chkdsk /f c:
  • 同意在下次重启时运行 chkdsk
  • 类型chkdsk /f x:(将“x”替换为其他驱动器号可见的NTFS 分区)
  • 重新启动 Windows 以让 chkdsk 在驱动器 C 上运行:

相关内容