Search code examples
windowsmacosiso

Hybrid ISO Image Creator Tool?


I'm currently automating some processes that my company uses to package drivers into ISO images. The established route uses a tool called "CDEverywhere" because it creates a Mac partition and Windows partition AND shares common folders between the two. Unfortunately, the company that made CDEverywhere has deprecated it's support for the tool, and there are potential licensing issues (Each installation needs a license and there isn't a way to obtain new licenses...)

Does anyone know of a decent alternative to CDEverywhere? I've run through Google and found some tools, but none that accomplish what CDEverywhere does. Any suggestions would be appreciated!


Solution

  • OS X has hdiutil, which can create hybrid iso images:

    $ hdiutil makehybrid -iso -joliet -o image.iso /path/to/data
    
    • image.iso would be the name of the iso you are creating
    • /path/to/data is what will go on it.

    hdiutil man page