Skip to content

Instantly share code, notes, and snippets.

@pbredenberg
Forked from HenryYang/get_Mojave_iso.sh
Created December 23, 2018 15:00
Show Gist options
  • Save pbredenberg/c74d35204995e6140d9ebe6360919020 to your computer and use it in GitHub Desktop.
Save pbredenberg/c74d35204995e6140d9ebe6360919020 to your computer and use it in GitHub Desktop.
Convert MacOS 10.14 Mojave Installer App To ISO File
#!/bin/bash
hdiutil create -o /tmp/Mojave.cdr -size 8g -layout SPUD -fs HFS+J
hdiutil attach /tmp/Mojave.cdr.dmg -noverify -mountpoint /Volumes/install_build
sudo /Applications/Install\ macOS\ Mojave.app/Contents/Resources/createinstallmedia --volume /Volumes/install_build
mv /tmp/Mojave.cdr.dmg ~/Desktop/InstallSystem.dmg
hdiutil detach /Volumes/Install\ macOS\ Mojave
hdiutil convert ~/Desktop/InstallSystem.dmg -format UDTO -o ~/Desktop/Mojave.iso
mv ~/Desktop/Mojave.iso.cdr ~/Desktop/Mojave.iso
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment