본문 바로가기
IT/리눅스

rhel 7.4에 ntfs 마운트

by Itlee 2018. 9. 18.
반응형

리눅스7.4 ntfs 마운트

 

# yum -y install ntfs*

 

rpmforge-release 최신버전 설치

http://repoforge.org/use/ 에서 버전 맞게 설치

 

fdisk -l 로 장착한 디스크 확인 후 

 

# mount -t ntfs /dev/sdc1 (해당 디스크) /mountpoint

 

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.

해당 에러 발생 시 

 

# yum -y install ntfsprogs 

# ntfsfix /dev/sdc1 (ntfs 디스크) 실행

 

다시 마운트

# mount -t /dev/sdc1 /mountpoint

반응형

'IT > 리눅스' 카테고리의 다른 글

rhel cdrom yum repolist 등록하는법  (0) 2019.01.11
부팅순서 변경 및 udev  (0) 2018.11.28
SAN switch 사용  (0) 2017.07.20
리눅스 disk format  (0) 2017.07.11
chmod 명령어  (0) 2017.02.06