NTFS 驱动器挂载失败,可能是由于 Windows 休眠

NTFS 驱动器挂载失败,可能是由于 Windows 休眠
Error mounting /dev/sda4 at /media/danny/70D49480D4944A6C: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda4" "/media/danny/70D49480D4944A6C"' 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.

就是这样的,有人能帮助我吗?

答案1

我假设您的第 4 个分区(对于 Linux 而言是 /dev/sda4)上安装了 Windows(可能是 8?)。Windows 使用休眠来加快启动速度,但因此将 RAM 数据和其他内容存储到硬盘上的分区中。这会导致您的错误,因为 Ubuntu 无法正确访问驱动器,这是由于 Windows 的锁定。启动 Windows 并禁用自动休眠功能并将其完全关闭。然后您应该能够使用 Ubuntu 访问该卷。问候!

答案2

您仍然可以以只读方式安装驱动器来访问您的数据。

创建挂载点

sudo mkdir 媒体/danny/驱动器

然后将其安装为只读

sudo mount -o /dev/sda4/media/danny/drive

相关内容