- 리눅스에서 ntfs 마운트시에 rw 로 마운트 안될때 해결 방법
20:56 root:/run/media> mount.ntfs-3g -o rw /dev/nvme0n1p3 /data/ntfs
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.)
Could not mount read-write, trying read-only
20:56 root:/run/media>
해결방법
yum install ntfsprogs
ntfsfix /dev/nvme0n1p3
Mounting volume... The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
FAILED
Attempting to correct errors...
Processing $MFT and $MFTMirr...
Reading $MFT... OK
Reading $MFTMirr... OK
Comparing $MFTMirr to $MFT... OK
Processing of $MFT and $MFTMirr completed successfully.
Setting required flags on partition... OK
Going to empty the journal ($LogFile)... OK
Checking the alternate boot sector... OK
NTFS volume version is 3.1.
NTFS partition /dev/nvme0n1p3 was processed successfully.
mount.ntfs-3g -o rw /dev/nvme0n1p3 /data/ntfs
댓글