0

When I try to access to an NTFS partition, I get this error message:

Error mounting system-managed device /dev/sda3: 
    Command-line `mount "/mnt/723DB8C4766C7701"' 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/sda3': 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.

So, as a temporary solution, i added the read-only option to the disk :

enter image description here

It's working, but I cannot write to disk (because of ro).

Is there any other possible solution for this issue ?

I have a dual boot system: Kali Linux 2 and Windows 10.

Gilles 'SO- stop being evil'
  • 807,993
  • 194
  • 1,674
  • 2,175
Bilal
  • 127
  • 1
  • 2
  • 9
  • 3
    Is this a dual boot system? Did you try booting into Windows and shutting it down cleanly? Otherwise try the ntfsfix tool to check the filesystem. – Chad Clark Feb 07 '16 at 15:28
  • @ChadClark, Yes it's a dual boot system, i have linux alongside with windows 10, i'll try the ntfsfix tool. – Bilal Feb 07 '16 at 17:06

2 Answers2

-1

In windows open cmd and run powercfg /h off; this is meant for disabling the machine from hibernation and allows full shutdown because if it hibernates then the state of the drive cannot be changed and will be write protected unless it is completely off. So after the above command is executed on the command prompt then boot into Linux, if dual booting

-4

The support of NTFS in Linux is partial, and flaky. Reading works fine, writing only on existing files as long as the file size doesn't change.

Don't use this.

vonbrand
  • 18,156
  • 2
  • 37
  • 59