XOS>> mic>> 返回
项目作者: stephen-fox

项目描述 :
mic (macOS ISO Creator) creates macOS installer .iso files.
高级语言: Go
项目地址: git://github.com/stephen-fox/mic.git
创建时间: 2018-04-16T01:49:48Z
项目社区:https://github.com/stephen-fox/mic

开源协议:MIT License

下载


mic (macOS ISO Creator)

What is it?

An application that generates macOS installer .iso files from the installers
found in the macOS App Store.

Issues with High Sierra and later

Minimal App Store installers

Starting with High Sierra, Apple sometimes provides “minimal” macOS installers
through the App Store. These installers are usually less than 1 GB in size.
Otherwise, they appear the same as a normal installer. Make sure to verify the
installer before using this tool. The tool does not support minimal installers.

For more information, refer to this forum post.

VirtualBox EFI errors

If you plan to use a High Sierra .iso in VirtualBox, you may encounter EFI
errors after the macOS installation process completes. If this occurs,
VirtualBox will automatically boot you into the EFI shell. You can work around
this problem by executing the following commands in the EFI shell:

  1. fs1:
  2. cd "macOS Install Data"
  3. cd "Locked Files"
  4. cd "Boot Files"
  5. boot.efi

How do I use it?

First, download a macOS installer from the App Store. Once the download is
complete, execute:

  1. ./mic -i '/Applications/<installer-name>.app' -o ~/Desktop/macos.iso

Where do I download the tool?

Since this is a Go (Golang) application, the preferred method of installation
is using go install. This automates downloading and building Go applications
from source in a secure manner. By default, this copies applications
into ~/go/bin/.

You must first install Go. After
installing Go, simply run the following command to install the application:

  1. go install github.com/stephen-fox/mic/cmd/mic@latest
  2. # If successful, the exectuable should be in "~/go/bin/".