无法从 ubuntu 访问 windows 分区

Zal*_*lgo 4 dual-boot mount 16.04

单击 nautilus 中的 Windows 分区后,我收到了这个错误。

Error mounting /dev/sda4 at /media/zalgo/D8649C54649C36EA: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000" "/dev/sda4" "/media/zalgo/D8649C54649C36EA"' 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/sda4': 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.
Run Code Online (Sandbox Code Playgroud)

我没有在 Windows 上启用快速启动或休眠,如果有任何命令我应该发布输出来帮助,请评论。

这不是当我无法在“安全状态”下关闭时如何访问 ubuntu 中的 windows 10 分区的副本,因为那里使用的解决方案在这里不起作用。

Zal*_*lgo 8

我发现有效的解决方案是一个名为ntfsfix.

安装ntfs-3g

sudo apt-get install ntfs-3g
Run Code Online (Sandbox Code Playgroud)

然后ntfsfix在您的 NTFS 分区上运行该命令。

例如:

ntfsfix /dev/sda4
Run Code Online (Sandbox Code Playgroud)


Ced*_* EI 5

这似乎是 Windows 10 的问题。在 Windows 10 中,即使您关闭系统,内核和驱动程序默认情况下也会休眠。要禁用此功能,请执行以下操作。

  • 打开控制面板。(win 键 + r。键入 control 并按 Enter)

  • 在图标视图中,单击系统和安全,然后单击电源选项。

  • 单击选择左侧的电源按钮的功能

  • 取消选中打开快速启动。(在此之前您可能需要按更改当前不可用的设置

  • 单击保存更改

  • 就像我说的,快速启动和休眠都已禁用。 (2认同)