I know this problem can be solved by restarting with Windows 8 in an normal mode, but I don't have Windows 8 any more. I'm trying to rescue the files that I had on a laptop on which the motherboard burned out, and I can't install Windows 8 in this one: I have only Ubuntu on this machine.
I'm trying to mount it from terminal using
sudo mount -o ro /dev/sdc4 at /media/bug/
This gives me the error message
Error mounting /dev/sdb4 at /media/bug/52B0E048B0E0345F: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sdb4" "/media/bug/52B0E048B0E0345F"' 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/sdb4': 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.
How can I recover my files using Ubuntu? It says that I can mount the volume as ro, but I don't know how to do that, and I don't know it that would allow me to copy my files.
sudo mount -o ro /dev/sdb4 /mnt
and thensudo umount /mnt
at the end – Salem Aug 15 '14 at 21:48mount the volume read-only with the 'ro' mount option.
– ElefantPhace Aug 15 '14 at 22:00