6

I am trying to create a bootable flash drive that is named Untitled from my MacBook Pro Retina with Yosemite 10.10.

This is what I am getting in Terminal:

mbp2013retina:~ chris$ sudo /Applications/Install\ OS\ X\ Mavericks.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install\ OS\ X\ Mavericks.app --nointeraction
sudo: /Applications/Install OS X Mavericks.app/Contents/Resources/createinstallmedia: command not found

Can someone help?

grg
  • 201,078

2 Answers2

4

I use following method.

  1. Format the USB:

    • Format it, using Disk Utility, as a Mac OS Extended (Journaled) drive, named Yosemite.
  2. Next run this in Terminal where you can remove the option —nointeraction if you want to get notifications and make decisions yourself about the disk and making the USB installer:

    sudo /Applications/Install\ OS\ X\ Yosemite.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install\ OS\ X\ Yosemite.app —nointeraction
    
    • Replace Untitled with name of the USB drive (Yosemite)

For additional information, see: Create a bootable installer for OS X

user3439894
  • 58,676
Ruskes
  • 48,129
  • It is better to use the command without the option —nointeraction because then the user will know what is going to happen and prevent possible complications/damages. – hhh Aug 29 '16 at 14:00
  • Make sure you have two hyphen characters in "--nointeraction" – Donn Lee Jan 15 '17 at 22:06
0

You just remove the space of os name, once you downloaded in Application Path. Install OS X Yosemite.app to InstallOSXYosemite.app

sudo /Applications/InstallOSXYosemite.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/InstallOSXYosemite.app --nointeraction
Jawa
  • 2,484