認識されない外部ディスクを強制的にマウントする


13

最近、Newer Techドック(パンのような裸のドライブをトースターに挿入するもの)を介してマウントし、FireWire 800を介してMacBook proに接続する4 TB裸(エンクロージャーなし)外付けハードドライブを購入しました。

約1か月後、ドライブを使用したいと思い、マウントされませんでした。

ディスクユーティリティは、「マウントされていない」と報告します。

ドライブを接続すると、次のようになります。

挿入したディスクは、このコンピュータでは読み取れませんでした。

挿入したディスクは、このコンピュータでは読み取れませんでした。

だから私は次のような端末コマンドを試しました:

diskutil list

これはどのようになります: ここに画像の説明を入力してください ここに画像の説明を入力してください

私も試しました:

mount force /dev/disk3

そして得た:

mount: You must specify a filesystem type with -t.

その後:

mount force -t Apple_HFS /dev/disk3

出力:

usage: mount [-dfruvw] [-o options] [-t external_type] special node
   mount [-adfruvw] [-t external_type]
   mount [-dfruvw] special | node

私も試しました:

diskutil repairVolume /dev/disk3

それは返します:

Error starting file system repair for disk3: Unrecognized file system (-69846)

そして最後に:

sudo gpt -r show /dev/disk3

これは次を返します: ここに画像の説明を入力してください

私は途方に暮れています、このドライブをマウントする方法について誰かが私にいくつかのアドバイスを与えることができますか?


最初のメッセージが示唆するようにドライブを初期化してみましたか?
jmh 2017年

それを回避するために、データを取得する前にそれを回避しようとしています
marcnyc

これは2つの問題の1つです-ドックが故障しているか、ドライブが故障/破損しています。別のドライブを試して、ドックがまだ機能していることを確認します。もしそうなら、あなたのドライブは乾杯です。回復ツールを見てみましょう。
アラン

はい、ドックは他のドライブでも動作します...私の回復ツールのオプションは何ですか?
marcnyc 2017年

試してみましたmount -t Apple_HFS force /dev/disk3か?時々、UNIXコマンドは少し厄介です。
2017年

回答:


9

あきらめ、ドライブをフォーマットし、データを失う直前に、どういうわけかドライブを修正することができたので、この投稿に出くわして他の人のためにターミナルで私が正確に何をしたかを投稿しています同じ問題。これが誰かに役立つことを願っています:

Admins-MacBook-Pro:~ admin$ diskutil mount /dev/disk3
Volume on disk3 failed to mount; if it has a partitioning scheme, use "diskutil mountDisk"
If the volume is damaged, try the "readOnly" option
If the volume is an APFS Volume, try the "diskutil apfs unlockVolume" verb
Admins-MacBook-Pro:~ admin$ mount force /dev/disk3
mount: You must specify a filesystem type with -t.
Admins-MacBook-Pro:~ admin$ mount -t /dev/disk3
Admins-MacBook-Pro:~ admin$ mount force -t /dev/disk3
usage: mount [-dfruvw] [-o options] [-t external_type] special node
       mount [-adfruvw] [-t external_type]
       mount [-dfruvw] special | node
Admins-MacBook-Pro:~ admin$ mount -t force /dev/disk3
usage: mount [-dfruvw] [-o options] [-t external_type] special node
       mount [-adfruvw] [-t external_type]
       mount [-dfruvw] special | node
Admins-MacBook-Pro:~ admin$ diskutil verifyDisk /dev/disk3
Nonexistent, unknown, or damaged partition map scheme
If you are sure this disk contains a (damaged) APM, MBR, or GPT partition
scheme, you might be able to repair it with "diskutil repairDisk /dev/disk3"
Admins-MacBook-Pro:~ admin$ diskutil repairDisk /dev/disk3
Nonexistent, unknown, or damaged partition map scheme
If you are sure this disk contains a (damaged) APM, MBR, or GPT partition map,
you can hereby try to repair it enough to be recognized as a map; another
"diskutil repairDisk /dev/disk3" might then be necessary for further repairs
Proceed? (y/N) y
Partition map repair complete; you might now want to repeat the
verifyDisk or repairDisk verbs to perform further checks and repairs
Admins-MacBook-Pro:~ admin$ diskutil repairDisk /dev/disk3
Repairing the partition map might erase disk3s1, proceed? (y/N) y
Started partition map repair on disk3
Checking prerequisites
Checking the partition list
Adjusting partition map to fit whole disk as required
Checking for an EFI system partition
Checking the EFI system partition's size
Checking the EFI system partition's file system
Checking the EFI system partition's folder content
Checking all HFS data partition loader spaces
Checking booter partitions
Reviewing boot support loaders
Checking Core Storage Physical Volume partitions
Updating Windows boot.ini files as required
The partition map appears to be OK
Finished partition map repair on disk3
Admins-MacBook-Pro:~ admin$

私は太陽の下でほとんどすべての端末回線を試しましたので、キーはこれが機能するシーケンスであったと思います:

mount -t /dev/disk3
mount force -t /dev/disk3
diskutil verifyDisk /dev/disk3
diskutil repairDisk /dev/disk3
diskutil repairDisk /dev/disk3

数日前にverifyDiskとrepairDiskを試してみたと聞いたところ、うまくいきませんでしたが、なんとなくこのシーケンスでパーティションマップを修復できました

これを手伝ってくれた皆さんに感謝します。私は私のデータを取り戻してうれしいです;)


時間がかかりすぎるため、以前の安全な消去を中止し、ラップトップを切断する必要がありました。再マウントしようとすると、このエラーが発生し、ステップ1、3、4、5を実行しました(ステップ2で使用エラーが発生しました)。このパーティションは復元されました。これは良い兆候でした。次にdiskutil eraseDisk、DiskUtilityがまだ認識していないため、fromコマンドラインを実行しました。これにより、ディスクを元に戻すことができました。
GameSalutes
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.