It is a kind of messed up situation.
I installed Ubuntu 13.10 on Windows 8 which didn't display Ubuntu.
I then tried Boot-Repair by opening Try Ubuntu without installing.
Here is the URL: http://paste.ubuntu.com/6555659
At this instant I was unable to load Windows.
Then I changed the BIOS setting from UEFI to Legacy which on restarting displayed the message No operating system found
.
I installed Ubuntu 13.10 again.
Here are my problems:
- I am unable to load Windows. (It is asking for recovery media which I don't have right now.)
- In Ubuntu I am unable to mount any Windows partitions.
Error message:
Error mounting /dev/sda8 at /media/dew/Songs, Videos & Movies: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda8" "/media/dew/Songs, Videos & Movies"' 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/sda8': 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 guess that Windows was hibernated or didn't shutdown properly. I can't open Windows again to ensure that it is properly shutdown (as mentioned earlier I don't have recovery media). I am happy to use Ubuntu for a while until I get my recovery media, but meanwhile is there any way to mount my Windows partitions?
sudo mount -t "ntfs" -o "ro,uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda8" "/media/dew/Songs, Videos & Movies"
– Anders F. U. Kiær Dec 11 '13 at 13:39mkdir -p '/media/dew/Songs, Videos & Movies'
then repeat. – Anders F. U. Kiær Dec 11 '13 at 13:45The disk contains an unclean file system (0, 0). Metadata kept in Windows cache, refused to mount. Failed to mount '/dev/sda8': Operation not permitted The NTFS partition is in an unsafe state. Please resume and shutdown
I tried the same command with -ro instead of -o. then the following error was seen. `fuse: failed to access mountpoint /media/dew/Songs, Videos & Movies: No such file or directory – Rakesh Godhala Dec 11 '13 at 13:55-o
, the-o
tells that the following text block will be options. And we wanna give it the additional option read only,ro,
, as it will let you mount the partition. – Anders F. U. Kiær Dec 11 '13 at 14:03