黑蘋果鏡像引導(dǎo)制作(單OC引導(dǎo))
寫在前面:
需要在mac系統(tǒng)里進(jìn)行,并在商店里下載好需要的鏡像文件,這里以montery12.6.6為例。

1、利用磁盤工具建立空白鏡像,大小15GB,格式為擴(kuò)展日志格式。
在終端里輸入:diskutil list
kai@kaideair ~ % diskutil list
/dev/disk0 (internal, physical):
?? #: ? ? ? ? ? ? ? ? ? ? ? TYPE NAME? ? ? ? ? ? ? ? ? ? SIZE ? ? ? IDENTIFIER
?? 0:? ? ? GUID_partition_scheme? ? ? ? ? ? ? ? ? ? ? ? *300.1 GB ? disk0
?? 1:? ? ? ? ? ? ? ? ? ? ? ? EFI ?NO NAME? ? ? ? ? ? ? ? ? 104.9 MB ? disk0s1
?? 2: ? ? ? ? Microsoft Reserved ??? ? ? ? ? ? ? ? ? ? ? ? 16.8 MB? ? disk0s2
?? 3: ? ? ? Microsoft Basic Data ??? ? ? ? ? ? ? ? ? ? ? ? 192.0 GB ? disk0s3
?? 4: ? ? ? ? ? ? ? ? Apple_APFS ?Container disk1? ? ? ? ? 108.0 GB ? disk0s4
/dev/disk2 (disk image):
?? #: ? ? ? ? ? ? ? ? ? ? ? TYPE NAME? ? ? ? ? ? ? ? ? ? SIZE ? ? ? IDENTIFIER
?? 0:? ? ? GUID_partition_scheme? ? ? ? ? ? ? ? ? ? ? ? +15.0 GB? ? disk2
?? 1:? ? ? ? ? ? ? ? ? ? ? ? EFI ?EFI? ? ? ? ? ? ? ? ? ? ? 209.7 MB ? disk2s1
?? 2:? ? ? ? ? ? ? ? ? Apple_HFS ?mi?? ? ? ? ? ? ? ? ? ? ? 14.7 GB? ? disk2s2
由上面可見建立的新的空白鏡像文件disk2分為兩部分:EFI分區(qū)和蘋果鏡像分區(qū)。將蘋果鏡像分區(qū)進(jìn)行分區(qū)(一般包含PE分區(qū)和OC引導(dǎo)分區(qū),即所謂雙分區(qū)),這里只制作OC引導(dǎo)單分區(qū)。在終端里輸入以下命令
kai@kaideair ~ % sudo diskutil splitPartition disk2s2 JHFS+ macOS 14.7GB
Password:
Started partitioning on disk2s2 (mi)
Splitting
Unmounting disk
Waiting for partitions to activate
Formatting disk2s2 as Mac OS Extended (Journaled) with name macOS
Initialized /dev/rdisk2s2 as a 14 GB case-insensitive HFS Plus volume with a 8192k journal
Mounting disk
Finished partitioning on disk2s2 (mi)
kai@kaideair ~ % diskutil list ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?
/dev/disk0 (internal, physical):
?? #: ? ? ? ? ? ? ? ? ? ? ? TYPE NAME? ? ? ? ? ? ? ? ? ? SIZE ? ? ? IDENTIFIER
?? 0:? ? ? GUID_partition_scheme? ? ? ? ? ? ? ? ? ? ? ? *300.1 GB ? disk0
?? 1:? ? ? ? ? ? ? ? ? ? ? ? EFI ?NO NAME? ? ? ? ? ? ? ? ? 104.9 MB ? disk0s1
?? 2: ? ? ? ? Microsoft Reserved ??? ? ? ? ? ? ? ? ? ? ? ? 16.8 MB? ? disk0s2
?? 3: ? ? ? Microsoft Basic Data ??? ? ? ? ? ? ? ? ? ? ? ? 192.0 GB ? disk0s3
?? 4: ? ? ? ? ? ? ? ? Apple_APFS ?Container disk1? ? ? ? ? 108.0 GB ? disk0s4
/dev/disk2 (disk image):
?? #: ? ? ? ? ? ? ? ? ? ? ? TYPE NAME? ? ? ? ? ? ? ? ? ? SIZE ? ? ? IDENTIFIER
?? 0:? ? ? GUID_partition_scheme? ? ? ? ? ? ? ? ? ? ? ? +15.0 GB? ? disk2
?? 1:? ? ? ? ? ? ? ? ? ? ? ? EFI ?EFI? ? ? ? ? ? ? ? ? ? ? 209.7 MB ? disk2s1
?? 2:? ? ? ? ? ? ? ? ? Apple_HFS ?macOS? ? ? ? ? ? ? ? ? ? 14.7 GB? ? disk2s2
2、將下載好的蘋果鏡像寫入空白鏡像
在終端里輸入以下命令:
sudo
/Applications/Install\ macOS\ Monterey.app/Contents/Resources/createinstallmedia #在訪達(dá)里的程序里打開montery里的Contents/Resources/createinstallmedia
--volume
/Volumes/macOS\ 1 /Applications/Install\ macOS\ Monterey.app #將步驟1里在桌面生成的macOS拖入終端里
--nointeraction
kai@kaideair ~ % sudo /Applications/Install\ macOS\ Monterey.app/Contents/Resources/createinstallmedia --volume /Volumes/macOS\ 1 /Applications/Install\ macOS\ Monterey.app --nointeraction
Password:
Erasing disk: 0%... 10%... 20%... 30%... 100%
Making disk bootable...
Copying to disk: 0%... 10%... 20%... 30%... 40%... 50%... 60%... 70%... 80%... 90%... 100%
Install media now available at "/Volumes/Install macOS Monterey"
kai@kaideair ~ %?
3、至此,單OC引導(dǎo)黑蘋果鏡像制作完成。