![Ubuntu 14.04 で 2TB NTFS ハードドライブをマウントできない](https://rvso.com/image/1417129/Ubuntu%2014.04%20%E3%81%A7%202TB%20NTFS%20%E3%83%8F%E3%83%BC%E3%83%89%E3%83%89%E3%83%A9%E3%82%A4%E3%83%96%E3%82%92%E3%83%9E%E3%82%A6%E3%83%B3%E3%83%88%E3%81%A7%E3%81%8D%E3%81%AA%E3%81%84.png)
誰かこの件について手伝ってくれませんか?
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 パーティションを修復するという回答を得ました。しかし、私のパーティションはまったく正常です。なぜ PartedMagic のようなツール (Linux のもの) ではこのドライブを完璧にマウントして使用できるのに、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
開発者のメールアドレス: [メールアドレス]Linux NTFS ホームページ:http://www.linux.org/ より
=======================================
Ctrlntfsprogs というプログラムを使用できます。インストールされていない場合は、キーボードで+ Alt+を押してターミナルを開くだけでインストールできますT。開いたら、以下のコマンドを実行します。
sudo apt-get install ntfsprogs
インストールしたら、NTFSドライブ名を見つける必要があります。sudo fdisk -
それを見つけるには、lと入力してください。名前がわかったら、
sudo ntfsfix /dev/sdXX
XX をドライブ名に置き換えてください。
注記: パーティションを扱うときは、安全のために必ず完全なバックアップを取ってください。
===================================
sudo apt-get install testdisk
次に実行します:
sudo testdisk
指示に従ってください。パーティションを検索してから変更を書き込む必要があります。
回答者の方々に感謝します: