리눅스에 ntfs 외장하드 연결할려고 하는데 아래와 같이 오류가 발생할시.
당연히 ntfs-3g를 설치하고 시도를 하고 아래와 같이 오류가 났을것이다.
ntfs_mst_post_read_fixup: Invalid argument
Record 0 has no FILE magic (0x0)
Failed to load $MFT: Input/output error
Failed to mount '/dev/sda2': Input/output error
NTFS is either inconsistent, or there is a hardware fault, or it's a
SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows
then reboot into Windows twice. The usage of the /f parameter is very
important! If the device is a SoftRAID/FakeRAID then first activate
it and mount a different device under the /dev/mapper/ directory, (e.g.
/dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation
for more details.
해결방법
apt-get install ntfsprogs
ntfsfix /dev/sdb1 (외장하드 위치)
를 해주고
mount -t ntfs-3g /dev/sdb1 /ntfs_disk
해주면 ntfs_disk 에 마운트가 된다.
'프로그램 > Linux' 카테고리의 다른 글
여러 버전의 java 를 설치 했을시 다른 java 버전 선택 하는 방법 (0) | 2018.12.11 |
---|---|
netstat 명령어로 포트 사용 유무 체크 (0) | 2018.12.04 |
ssh: connect to host 192.168.1.7 port 22: Connection refused 해결법 (1) | 2014.03.03 |
linux find (0) | 2013.11.18 |
ftp 접속 시도 500 OOPS: vsftpd: refusing to run with writable root inside chroot() 오류 해결방법 (0) | 2013.09.08 |