web-dev-qa-db-ja.com

Ubuntu14.04に2TBNTFSハードドライブをマウントできません

誰かがこれについて私を助けてくれますか?

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
user309101

Sudo apt-get install ntfs-3gを指定して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

開発者の電子メールアドレス:[email protected] Linux 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

指示に従ってください。パーティションを検索してから、変更を書き込む必要があります。

ここの回答者に感謝します:

1

この問題は、「chkdsk」コマンドを使用してWindowsPCから解決されました。 https://neosmart.net/wiki/chkdsk/

Windowsは、破損したファイルシステムを自動的に修復します。

それは動作します:D

0
Vishnu Prasad