I’ve a 525 GB Crucial SSD that I can’t mount. It appears only greyed out on Disk Utility but not in Finder or Desktop.
Here's the disk description by diskutil list
/dev/disk2 (external, physical):
#: TYPE NAME SIZE IDENTIFIER
0: GUID_partition_scheme *525.1 GB disk2
1: EFI EFI 209.7 MB disk2s1
2: Apple_HFS SSD500 524.1 GB disk2s2
3: Apple_Boot Recovery HD 650.0 MB disk2s3
diskutil verifyDisk /dev/disk2
and diskutil repairDisk /dev/disk2
say The partition map appears to be OK
I tried to mount the disk with
diskutil mount /dev/disk2
but I gotVolume on disk2 timed out waiting to mount
I tried using
diskutil mount readOnly /dev/disk2
but I also gotVolume on disk2 timed out waiting to mount
I tried to force mount the disk with a specific filesystem using
mount force -t Apple_HFS /dev/disk2
but nothing.
At the end I wrote diskutil repairVolume /dev/disk2
but I got this error that I didn't know:
Error starting file system repair for disk2: Invalid request (-69886)
Here's a gpt output from sudo gpt -r show /dev/disk2
if needed:
start size index contents
0 1 PMBR
1 1 Pri GPT header
2 32 Pri GPT table
34 6
40 409600 1 GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B
409640 1023669408 2 GPT part - 48465300-0000-11AA-AA11-00306543ECAC
1024079048 262144
1024341192 1269536 3 GPT part - 426F6F74-0000-11AA-AA11-00306543ECAC
1025610728 7
1025610735 32 Sec GPT table
1025610767 1 Sec GPT header
There're some alphanumeric codes wrongs? What could I do?
I think that the problem is on the disk2s2 Volume (Apple_HFS SSD500)..maybe enter in Safe Mode and use fsck
could be useful? Thanks in advance.
bs=1M
like your post or I have to change to another size? – Bug-Gy Aug 01 '20 at 19:13dd
command specific to your situation.rdisk
is not a typo - that the device name for the "rawdisk itself - not the mount. You should get better results with that device instead. You can also push the process to the background by putting an
&` at the end of the command and it will free up your terminal for other tasks. – Allan Aug 01 '20 at 19:39