Skip to content

Instantly share code, notes, and snippets.

@julianxhokaxhiu
Last active March 25, 2024 16:15
Show Gist options
  • Star 33 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save julianxhokaxhiu/d8c4a986ddb1cfc87e19a50eb238217f to your computer and use it in GitHub Desktop.
Save julianxhokaxhiu/d8c4a986ddb1cfc87e19a50eb238217f to your computer and use it in GitHub Desktop.
Simple bash script to create a Bootable ISO from macOS Catalina Install Image from Mac App Store
#!/usr/bin/env bash
#===========================================================================
# Works only with the official image available in the Mac App Store.
# Make sure you download the official installer before running this script.
#===========================================================================
hdiutil create -o /tmp/Catalina.cdr -size 9000m -layout SPUD -fs HFS+J
hdiutil attach /tmp/Catalina.cdr.dmg -noverify -mountpoint /Volumes/install_build
sudo /Applications/Install\ macOS\ Catalina.app/Contents/Resources/createinstallmedia --volume /Volumes/install_build --nointeraction
hdiutil detach "/Volumes/Install macOS Catalina"
hdiutil convert /tmp/Catalina.cdr.dmg -format UDTO -o /tmp/Catalina.iso
mv /tmp/Catalina.iso.cdr ~/Desktop/Catalina.iso
rm /tmp/Catalina.cdr.dmg
@ammgws
Copy link

ammgws commented Aug 31, 2023

Instead of specifying the size, I tried -type SPARSE and was able to have the ISO be the perfect size:

>hdiutil create -o /tmp/Catalina.cdr -type SPARSE -layout SPUD -fs HFS+J

I haven't been able to boot into it yet, but don't think it's because of -type SPARSE

@julianxhokaxhiu
Copy link
Author

Logically the parameter makes sense, if someone could please test the resulting ISO I'd be happy to update the script. Thank you for looking into this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment