macOS Sierra のインストールUSBメディアを作成しようとしましたが、エラーが発生してハマったので、備忘録して残しておきます。
この記事の目次
macOS Sierra インストールUSBの作り方
macOS 10.12 Sierraのインストールディスクを作成する方法。をご参照ください。
発生したエラー
Error erasing disk error number (-69888, 0)
下記のようにインストールUSBの作成を試みるとイレーズに失敗しました。
1 2 3 4 5 6 |
$ sudo /Applications/Install\ macOS\ Sierra.app/Contents/Resources/createinstallmedia --volume /Volumes/usb/ --applicationpath /Applications/Install\ macOS\ Sierra.app/ Ready to start. To continue we need to erase the disk at /Volumes/usb/. If you wish to continue type (Y) then press return: y Erasing Disk: 0%... 10%... Error erasing disk error number (-69888, 0) |
対処法
USBメモリをマスター・ブート・レコード master boot record(MBR)としてフォーマットする
USBメモリをフォーマットする際、方式を「マスター・ブート・レコード」にすると、イレーズでのエラーを回避できました。
参考:http://apple.stackexchange.com/questions/135694/my-hard-drive-doesnt-work-but-bootcamp-work
結果
うまくいきました。
結果は下記のとおりです。
1 2 3 4 5 6 7 8 9 10 11 12 |
$ sudo /Applications/Install\ macOS\ Sierra.app/Contents/Resources/createinstallmedia --volume /Volumes/usb/ --applicationpath /Applications/Install\ macOS\ Sierra.app/ Ready to start. To continue we need to erase the disk at /Volumes/usb/. If you wish to continue type (Y) then press return: y Erasing Disk: 0%... 10%... 20%... 30%...100%... Copying installer files to disk... Copy complete. Making disk bootable... Copying boot files... Copy complete. Done. |
参考になれば幸いです。