OS X

Prev Next

To create physical media from the ISO file on OS X:

  1. Convert the ISO to a DMG file:

    hdiutil convert -format UDRW -o /<path-to-output-img>/FireEye­CCCB-vx.x.x.img /<path-to-input-iso>/FireEye-CCCB­vx.x.x.iso

  2. List your currently attached disks:

    diskutil list

  3. Insert your USB drive.

  4. List your currently attached disks and identify the newly attached USB drive:

    diskutil list

  5. Unmount the USB drive:

    diskutil unmountDisk /dev/diskX

  6. Use dd to copy the image to the new USB drive, making sure to specify the USB drive as /dev/rdiskX instead of /dev/diskX:

    sudo dd if=/path/to/input/dmg/FireEye-CC1-vx.x.x.img.dmg of=/dev/rdiskX bs=1m

  7. Eject the USB drive:

    diskutil eject /dev/diskX