문제

I've installed both windows 8 and Linux 3.8.0-35-generic on my Laptop. I'm unable to access the other drives other than one in which Linux has been installed. It is showing following error. Casket is name of the partition.

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.

I thought shutting down windows properly would solve the problem ,but no change. Is there any other way to shut down windows properly. Or any other way to access the contents of the drives.

도움이 되었습니까?

해결책

Did you try the suggestion at the bottom of that error message - mounting the filesystem read-only?

sudo mount -o ro -t auto /dev/sda4 /media/rancher/Casket

Or just add the -o ro to your /etc/fstab file for the /dev/sda4.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top