Skip to content

Instantly share code, notes, and snippets.

@searls
Created May 2, 2014 12:05
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save searls/f64ceb755b03244b23f9 to your computer and use it in GitHub Desktop.
Save searls/f64ceb755b03244b23f9 to your computer and use it in GitHub Desktop.
Creating a USB install disk of OS X Mavericks

Apple has changed how it distributes OS X Mavericks since its initial release in October 2013. This note was written on May 2, 2014. This affects the instructions you'll find online for how to make a bootable OS X installer.

It used to be that when you downloaded OS X from the App Store, the entire 5GB installer was placed in /Applications/Install OS X Mavericks.app. Now, there is a simple shortcut program placed in /Applications/OS X Mavericks.app. The app file is immediately removed in the event of an error or a successful post-install launch. When the download succeeds, the app file is launched which brings up the traditional install wizard, but this time mounted to /Volumes/Install OS X Mavericks.

I actually discovered this because if you already have a volume mounted of the same name (which I did, because I was trying to update my existing USB installer), the App Store download promptly fails right after finishing its download.

So if you have an empty disk you'd like to use as an installer that's named Untitled and mounted to /Volumes/Untitled, you can run this:

sudo /Volumes/Install\ OS\ X\ Mavericks/Install\ OS\ X\ Mavericks.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Volumes/Install\ OS\ X\ Mavericks/Install\ OS\ X\ Mavericks.app --nointeraction

The above command will erase the disk and move the installer into place such that it's bootable.

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