我通过 Ubuntu 中的 OS-Uninstaller 卸载了 Windows。但现在我无法访问任何磁盘分区。我收到以下错误:
Error mounting /dev/sda7 at /media/devil/Programming: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda7" "/media/devil/Programming"' 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/sda7': 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.
该怎么办?我想我必须再次安装 Windows.. 对吗?
答案1
我遇到了同样的问题,我有 2 个硬盘,1TB(Windows)和 1TB(服务器 2012)。我对同一件事感到疑惑。
基本上,这是因为 Windows 8,也包括 Windows Server 2012“快速启动选项”默认启用,导致硬盘不关闭完全地。
因为有些主板有在启动时禁用它的选项。如果没有,你只需要
- 启动窗口并启动控制面板。
- 查找电源选项,在高级电源选项下有
灰色复选框显示
fast boot
。您可以通过单击“更改当前可用的设置”来启用此选项 - 取消选中该
fast boot
选项。 - 现在关闭计算机并启动进入 Ubuntu。
做
sudo fdisk -l | grep NTFS
您应该能够挂载所需的分区,例如
sudo mount -t ntfs /dev/sdb3 Desktop/ntfs
祝你好运。