Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save simongcc/d10f3f9d3534ab479035a5e13798cc81 to your computer and use it in GitHub Desktop.
Save simongcc/d10f3f9d3534ab479035a5e13798cc81 to your computer and use it in GitHub Desktop.
Create disc image in Mac OS
# Mac OS 10.12.16
Step
1. Open Disk Util
2. New Image > Blank Image
3. Settings:
Image Format: DVD/CD Master
Partition map: (No Partition map), if set, it will fail
Format: ExFat / MacOS both working
Size: Size needed
The output file is in cdr format. It is writable in Mac, not sure if it is mountable with
# To convert .cdr image into windows compatible format .iso
# use hdiutil inside Mac OS terminal
hdiutil makehybrid -iso -joliet -o [filename].iso [filename].cdr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment