web-dev-qa-db-ja.com

ハードドライブをマウントする方法

数日前、私のウィンドウが破損し、Ubuntuをusbにマウントし、同じコンピューターに接続されている別のハードドライブにインストールする必要がありました。他のコンピューターから回復したいファイルがありますが、問題が解決した場合は、ハードドライブを再び使用できるようにしたいと思います。しかし、ハードドライブを開こうとすると、このエラーが発生します

"Error mounting /dev/sda1 at /media/unknown/Gateway: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda1" "/media/unknown/Gateway"' exited with non-zero exit status 13: ntfs_attr_pread_i: ntfs_pread failed: Input/output error
Failed to read NTFS $Bitmap: 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."

どんな助けも大歓迎です。また、すばらしい基本的な情報に分解できる場合は、Ubuntuを初めて使用するので、現時点で多くのことを行う方法がわかりません。

新しいメッセージ

"Error mounting /dev/sda1 at /media/unknown/Gateway: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sda1" "/media/unknown/Gateway"' exited with non-zero exit status 13: ntfs_attr_pread_i: ntfs_pread failed: Input/output error
Failed to read NTFS $Bitmap: 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."
5
Colby Woolson

ntfsfix は、限られたNTFSチェックを実行するプログラムです。すべてのNTFSトラブルを解決するわけではありませんが、いくつかの問題を解決します。

まず、ntfs-3gがインストールされていることを確認します。

Sudo apt-get install ntfs-3g

次に、次を実行して修復を試みます。

Sudo ntfsfix /dev/sda1

そして、物事を修正しようとします。

これが失敗した場合は、ダウンロードしてインストールします testdisk 。これはもう少しマニュアルですが、それ以外の場合は復元できない重要なファイルを取得することができます。

Sudo apt-get install testdisk

そしてそれを実行します:

Sudo testdisk

次に、ボリュームをスキャンしていることを確認し、正しいボリュームを選択できます。ターミナルウィンドウの下部にあるキーの機能に関するガイドラインに従います。

すべてのコマンドは端末にあります。ターミナルを開いたら、プロンプトubuntu@ubuntu:~$が表示されるまで待ってからコマンドを実行します。ライブCDを使用しているため、再起動すると変更が失われます。 Ubuntuをより大きな外部ハードディスクにインストールして、Ubuntuを永続的にインストールすることを検討してください。
Sudoを使用すると、mightパスワードの入力を求められます。ライブメディアでは、ubuntuです。 Ubuntuをインストールする場合は、ユーザーパスワードです。入力しても表示されません(****でさえも)

2
hexafraction