[리눅스] NTFS 분할 영역이 오류가 뜨며 연결되지 않을 때 - ntfsfix
리눅스에서 마운트(mount) 명령으로 윈도우에서 쓰던 NTFS 분할 영역(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.)
이런 오류가 뜬 것은 비정상 종료와 같은 문제로 NTFS 분할 영역에 문제가 생겼기 때문이다. 아래처럼 ntfsfix로 오류를 고치고 나면, mount 명령이 잘 될 수 있다. (sudo ntfsfix NTFS영역경로)
$ sudo ntfsfix /dev/sdd2
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/sdd2 was processed successfully.
덧글을 달아 주세요