Ubuntu 14.04에서 2TB NTFS 하드 드라이브를 마운트할 수 없습니다

Ubuntu 14.04에서 2TB NTFS 하드 드라이브를 마운트할 수 없습니다

누군가 이것에 대해 나를 도와줄 수 있나요?

Error mounting /dev/sdg4 at /media/jote/DATA_4: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sdg4" "/media/jote/DATA_4"' exited with non-zero exit status 13: Error reading bootsector: Input/output error
Failed to mount '/dev/sdg4': 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.

나는 물었다질문AskUbuntu에서 Windows의 chkdsk /f를 사용하여 '손상된' NTFS 파티션을 복구하라는 답을 얻었습니다. 그러나 내 파티션은 완벽하게 건강합니다! Linux이기도 한 PartedMagic과 같은 도구가 이 드라이브를 완벽하게 마운트하고 사용할 수 있는데 Ubuntu 14.04에서는 사용할 수 없는 이유를 누군가 설명할 수 있습니까?

답변1

ntfs-3g를 설치합니다 sudo apt-get install ntfs-3g. 그런 다음 NTFS 파티션에서 ntfsfix 명령을 실행하십시오.

ntfsfix v2.0.0(libntfs 10:0:0)

사용법: ntfsfix [옵션] 장치

Attempt to fix an NTFS partition.

-h, --help             Display this help
-V, --version          Display version information

예: ntfsfix /dev/hda6

개발자의 이메일 주소: [이메일 보호됨]리눅스 NTFS 홈페이지:http://www.linux-ntfs.org

========================================

ntfsprogs라는 프로그램을 사용할 수 있습니다. 설치되어 있지 않은 경우 키보드에서 Ctrl+ Alt+를 눌러 터미널을 열면 설치할 수 있습니다 . T열리면 아래 명령을 실행하십시오.

sudo apt-get install ntfsprogs

일단 설치되면 NTFS 드라이브 이름을 찾아야 합니다. sudo fdisk -이름을 알고 나면 l을 수행하여 알아보세요.

sudo ntfsfix /dev/sdXX

XX를 드라이브 이름으로 바꾸십시오.

메모: 파티션을 다룰 때마다 안전을 위해 완전한 백업이 있는지 확인하십시오.

===================================

sudo apt-get install testdisk

그런 다음 실행하십시오.

sudo testdisk

그리고 지시를 따르세요. 파티션을 검색한 다음 변경 사항을 작성해야 합니다.

답변자에게 감사드립니다.

답변2

이 문제는 Windows PC에서 "chkdsk" 명령을 사용하여 해결되었습니다. https://neosmart.net/wiki/chkdsk/

Windows는 손상된 파일 시스템을 자동으로 복구합니다.

작동합니다 :D

관련 정보