-1

i am having a problem with trying to access my windows 10 partition from ubuntu, getting the error:

Error mounting /dev/sda4 at /media/jacob/OS: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000" "/dev/sda4" "/media/jacob/OS"' exited with non-zero exit status 14:

Windows is hibernated, 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 have tried doing a "safe" shutdown many times. (shut down from start menu)

  • Try disabling hibernation in windows or try mounting it as read only (if you dont want to write stuff ), try - http://askubuntu.com/questions/296331/how-to-mount-a-hard-disk-as-read-only-from-the-terminal – Rishabh Nov 03 '15 at 19:40
  • I believe you have to shut down windows from the command line. 'shutdown -f' If I remember correctly. – SuperSluether Nov 03 '15 at 21:48

2 Answers2

2

Try

sudo ntfsfix -d /dev/sda1

also try without -d flag

hg8
  • 13,462
1
  1. Boot into Windows
  2. Disable fast startup
  3. shutdown /s for a regular shutdown.

You can also perform a full shutdown by running this command in a cmd:

shutdown /s /f /t 0

If you can't access Windows, boot into Windows recovery media (DVD) and then run the above command.

Gayan Weerakutti
  • 3,770
  • 26
  • 38