即使禁用快速启动,也无法从 Ubuntu 13.10 访问 Windows 8.1 NTFS 分区

mr_*_*zad 6 partitioning dual-boot mount windows-8

我使用的是 Ubuntu 13.04、32 位和 Windows 8.1。当我尝试挂载 Windows 8.1 NTFS 分区时,它显示如下错误消息。以前我使用的是 Windows 7,但是挂载该分区没有问题。我尝试按照此答案并在 Windows 8.1 上执行以下操作

解决方案:Windows 8

Windows 8 中有一项名为快速启动的新功能。如果启用此功能(默认情况下),当您选择“关闭”时,Windows 8 实际上不会完全关闭。相反,它执行“混合关闭”。这有点像冬眠;它可以更快地启动 Windows 8 备份。因此,您需要禁用此功能才能正常关闭它,并能够挂载 Windows 分区。为此,请启动到您的 Windows 8 并:

Note: disabling Fast Startup will most likely make your Windows 8 take a longer time to boot. There are no "exact" numbers, but let's say that if it took you 10 seconds to boot into Windows 8, it will now take you 50 seconds after disabling this feature.
Run Code Online (Sandbox Code Playgroud)
  1. 在小图标视图中打开控制面板,然后单击电源选项。
  2. 单击选择电源按钮的功能。
  3. 单击更改当前不可用的设置
  4. 取消选中打开快速启动(推荐)。

单击保存更改。现在,关闭 Windows 8 并重新启动到 Ubuntu。您将能够安装而不会出错。

但是即使完成此操作,我也无法挂载 Windows 8.1 分区。任何人都可以帮助我,请!错误信息是

  Error mounting /dev/sda2 at /media/rashed/Windows 8.1: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda2" "/media/rashed/Windows 8.1"' exited with non-zero exit status 14: Windows is hibernated, refused to mount.
    Failed to mount '/dev/sda2': 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)

mr_*_*zad 10

我通过powercfg /h off在 Windows 命令终端中运行解决了这个问题 。此命令通常永久禁用 Windows 休眠。我按照此说明进行操作,现在我可以完全访问 Windows 分区。

  • 感谢您发布问题和答案。我遇到了同样的问题,即将发布“尽管禁用了快速启动,但仍无法挂载 NTFS(Windoes 8.1)R/W”,这让我直接看到了您的帖子。下班回来后我会试试你的伎俩... +1。 (2认同)
  • 我希望我能再给你点赞,因为我刚刚验证了你神奇的 [powercfg /h off](http://www.hecticgeek.com/2012/12/disable-hibernation-windows-8/) 确实解决了问题对于我的 Windows 8.1 + Ubuntu 14.04 LTS 双启动。谢谢! (2认同)