我在笔记本电脑上安装了Windows 8和Linux 3.8.0-35-generic。 我无法访问除安装Linux之外的其他驱动器。 它显示以下错误。棺材是分区的名称。
Error mounting /dev/sda4 at /media/rancher/Casket: Command-line `mount -t "ntfs" -o
"uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda4" "/media/rancher/Casket"' 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.
我认为正确关闭窗户可以解决问题,但没有改变。 有没有其他方法可以正常关闭窗口。或者以任何其他方式访问驱动器的内容。
答案 0 :(得分:3)
您是否尝试过该错误消息底部的建议 - 将文件系统挂载为只读?
sudo mount -o ro -t auto /dev/sda4 /media/rancher/Casket
或者只需将-o ro
添加到/etc/fstab
的{{1}}文件中。