3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Macで外付けHDDをアンマウントせずに抜いてしまい、再マウントできなくなる

Last updated at Posted at 2019-10-30

事象

私の利用しているUSBハブは接続不良で、よくHDDがアンマウントせずに抜けてしまう。
そのとき、ハードディスクは再度接続しても再マウントされず、ディスクユーティリティで見てもグレーアウト、First Aidもエラー8ですぐ終了してしまう。
(TODO: キャプチャはあとでとる)

解決策

fsck_msdosが動いているか見る。元気よく動いているようだったら、そのまましばらく待つとプロセスが終了し、firstAidができるようになる。
が、しばらくしてもfsck_msdosが終わらない場合は強制kill。

MacBook-Pro:~ yu$ ps aux | grep fsck_msdos
root             10686   5.2  0.2  4537496  27076   ??  U     1:57AM   0:04.36 /System/Library/Filesystems/msdos.fs/Contents/Resources/./fsck_msdos -y /dev/rdisk2s1
yu               10705   0.0  0.0  4287476    840 s000  S+    1:59AM   0:00.01 grep rdisk2
MacBook-Pro:~ yu$ sudo kill 10686
Password:

このあとFirstAidを実行し、再マウント。

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?