web-dev-qa-db-ja.com

UbuntuからNTFSを修正するにはどうすればよいですか?

問題の説明:マウントしない外部USBドライブがあります。

状況:

  1. 私はMS Windowsへのアクセス権を持っていませんし、望んでいません。
  2. 1.をご覧ください。
  3. 外付けUSBドライブはNTFS形式です。
  4. RAIDはありません。
  5. 私は長年Linuxユーザーであり、CLIを恐れていません。
  6. 私はむしろそれを拭いてゼロから始めたくないが、それを避けることができないならそれは重要ではない。

エラーは次のようになります。

Error mounting /dev/sdc1 at /media/dude/External HD: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000" "/dev/sdc1" "/media/dude/External HD"' exited with non-zero exit status 13: $MFTMirr does not match $MFT (record 0).
Failed to mount '/dev/sdc1': 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.
 (udisks-error-quark, 0)
2
user447607

tryを使用して、NTFSボリュームを修復するためにntfsfixを使用できます。これは、MFTとMFTMirrorが一致しないなどの単純なエラー、およびいくつかのマイナーなファイルシステムの不一致を修正できるという点で「解決策」です。 nftsfixがドライブを修正しないため使用できない場合は、実証済みの「Windowsシステムを使用してNTFSを修復する」ソリューションを使用する必要があります。

Sudo ntfsfix /dev/sdXY(XとYはドライブのデバイスの文字、Yはパーティション番号です。Sudo fdisk -lからこのデータを取得できますが、/dev/sdc1のように見えますあなたの特定のケースのために)その後動作するはずです。

NTFSの問題を解決するためのまだ試行された「完全な」解決策は、WindowsシステムまたはWindowsブートディスク(または、外部USBドライブを渡すWindows VM)であり、 Windowsシステムからchkdiskを使用します。

7
Thomas Ward