-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)

2 Answers2

2

Try

sudo ntfsfix -d /dev/sda1

also try without -d flag

hg8
  • 13,582
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,830
  • 1
  • 28
  • 39