Fehlermeldung:
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Falling back to read-only mount because the NTFS partition is in an
unsafe state. Please resume and shutdown Windows fully (no hibernation
or fast restarting.)
Das Problem:
Das Problem liegt an dem bei Windows 8 und aufwärts eingeführten Feature „Fast-Boot“ bzw. „Schnellstart“
Die Lösung:
Mit Windows: Das Windows mit der Festplatte und folgendem Befehl (ohne Schnellstart) herrunterfahren:
powercfg /h off
oder via Linux und dem Tool ntfsfix:
Mit mount überprüfen ob die Festplatte schon als „Read-Only“ eingebunden wurde:
mount Bei mir hat er die Festplatte wie in der Fehlermeldung beschrieben als "Read-Only eingebunden: /dev/sdb1 on /mnt/festplatte1 type fuseblk (ro,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
Wenn ja ausbinden:
umount /dev/sdb1
Das Tool ntfsfix ausführen (prüft und behebt das Problem):
ntfsfix /dev/sdb1
Danach sollte man die Festplatte wieder normal einbinden :
mount -t ntfs-3g /dev/sdb1 /mnt/festplatte1 -o noatime
Tipps:
Schnellstart bei Windows deaktivieren:
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v HiberbootEnabled /t reg_dword /d 0 /f