Contribute
Register

The disk you inserted was not readable by this computer.

Status
Not open for further replies.
Joined
Apr 9, 2011
Messages
21
Motherboard
GA-Z270X-Gaming K7
CPU
i7-6700K
Graphics
RX 480
Mac
  1. iMac
Mobile Phone
  1. iOS
I am getting this error when logging into ML.

"The disk you inserted was not readable by this computer" Initialize... Ignore Eject

My System:

ga-z68x-ud4-b3 w/UEFI Bios version U1E
Intel Core i7-3770K
GeForce GTX 470

Tripple Boot System Using 3 separate drives. All drives are Samsung 840 Pro 256GB drives.

Bootloader = Grub2

Disk0 = Windows 8 (ntfs)
Disk1 = Mountain Lion (hfs+ with GUID partition table)
Disk2 = SuSE Linux (ext4)
Disk3 = Seagate 3TB 7200RPM Model #ST3000DM001 (ntfs)
 
Hello

Did you find an answer to your problem ? I'm in the same trouble...

Thanks in advance !


( excuse my english, i'm french :) )
 
The safest imo option which works well for me is:

https://github.com/andre-richter/diskejectd

It is the simplest possible service which will blacklist the devices you list in the plist file. Compiling and installing it requires the xcode command line tools. If you installed homebrew then you already have it. Otherwise you can install it with:

Code:
[COLOR=#303030][FONT=monospace]xcode-select --install[/FONT][/COLOR]

For example my configuration looks like this:

Code:
"http://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version="1.0">
<dict>
    <key>Label</key>
    <string>com.diskejectd</string>
    <key>Program</key>
    <string>/usr/local/sbin/diskejectd</string>
    <key>ProgramArguments</key>
    <array>
        <string>/usr/local/sbin/diskejectd</string>
        <string>disk0s2</string>
        <string>disk0s5</string>
        <string>disk2s1</string>
        <string>disk2s2</string>
        <string>disk2s3</string>
        <string>disk2s4</string>
        <string>disk2s5</string>
    </array>
    <key>KeepAlive</key>
    <true/>
</dict>
</plist>
 
This works great until the disk numbers change. Sometimes my disk numbers change at random when I reboot. Is there a way to prevent that?
 
This works great until the disk numbers change. Sometimes my disk numbers change at random when I reboot. Is there a way to prevent that?
Here's a slightly modified diskejectd to use partition UUIDs instead of device names. Most macs have the one internal volume.
 
This works great until the disk numbers change. Sometimes my disk numbers change at random when I reboot. Is there a way to prevent that?
Those disk# are assigned by the sequence that the BIOS sees them at boot time. Do you sometimes pull disks out of the case and put them back in in different positions?
 
Status
Not open for further replies.
Back
Top