Step 1
Download macOS Installer (InstallAssistant.pkg
). Here is the link to Sonoma beta installer:
Step 2
Run InstallAssistant.pkg
by double-clicking on it. This will move Install macOS Sonoma beta.app
to /Applications
folder.
Step 3
Create a new DMG file, open Terminal and run:
hdiutil create -o /tmp/Somona -size 16000m -volname Somona -layout SPUD -fs HFS+J
The above command will create a 16GB DMG file called Somona
in /tmp
folder
Step 4
Mount the DMG file we just created:
hdiutil attach /tmp/Somona.dmg -noverify -mountpoint /Volumes/Somona
Step 5
Use createinstallmedia
to create the macOS installer on the mounted volume:
sudo /Applications/Install\ macOS\ Sonoma\ beta.app/Contents/Resources/createinstallmedia --volume /Volumes/Somona
Step 6
Unmount the volume we've just created:
sudo hdiutil detach /Volumes/Install\ macOS\ Sonoma\ beta
Step 8
Convert the DMG disk image file to an ISO disk image file (technically a CDR file):
sudo hdiutil convert /tmp/Somona.dmg -format UDTO -o ~/tmp/Somona.cdr
Step 9
Finally rename the CDR file to ISO:
sudo mv ~/tmp/Somona.cdr ~/tmp/Somona.iso
https://macpaw.com/how-to/create-iso-file
https://osxdaily.com/2020/07/20/how-convert-macos-installer-iso/
Thank you for making this code snipped available.
Here is an updated version as Sonoma is now out out beta.
Extract ISO Image from a macOS installer
Step 1
Download macOS Installer (
InstallAssistant.pkg
). Here is the link to Sonoma beta installer:https://swcdn.apple.com/content/downloads/32/06/062-01946-A_0PEP7JHIWA/1pfs4xh22555dj51fkep7w06s4eiezh21p/InstallAssistant.pkg
Step 2
Run
InstallAssistant.pkg
by double-clicking on it. This will moveInstall macOS Sonoma beta.app
to/Applications
folder.Step 3
Create a new DMG file, open Terminal and run:
hdiutil create -o /tmp/Somona -size 16000m -volname Somona -layout SPUD -fs HFS+J
The above command will create a 16GB DMG file called `Somona in the /tmp directory
Step 4
Mount the DMG file we just created:
hdiutil attach /tmp/Somona.dmg -noverify -mountpoint /Volumes/Somona
Step 5
Use createinstallmedia to create the macOS installer on the mounted volume:
sudo /Applications/Install\ macOS\ Sonoma.app/Contents/Resources/createinstallmedia --volume /Volumes/Somona
Step 6
Unmount the volume we've just created:
sudo hdiutil detach /Volumes/Install\ macOS\ Sonoma
Step 8
Convert the DMG disk image file to an ISO disk image file (technically a CDR file):
sudo hdiutil convert /tmp/Somona.dmg -format UDTO -o /tmp/Somona.cdr
Step 9
Finally rename the CDR file to ISO:
sudo mv /tmp/Somona.cdr /tmp/Somona.iso