Create A Bootable OS X Yosemite DVD/USB Drive

Hi,


I'm using OS X 10.9.5 Mavericks and would like to upgrade to OS X Yosemite.


How do I create a bootable OS X DVD/USB Drive so I can clean install the OS?


Thanks.


Ed

iMac (20-inch Early 2008), OS X Mavericks (10.9.3)

Posted on Oct 22, 2014 3:21 AM

Reply
Question marked as ⚠️ Top-ranking reply

Posted on Dec 28, 2014 12:58 AM

If you prefer to make a bootable dvd, you can do it this way:


After downloading the full Yosemite installer app from the Mac App Store, run these 14 commands in Terminal to create a Yosemite.iso file and then burn it to a dual layer DVD with Disk Utility. You may then boot up from it by holding the option key down and then install Yosemite.


hdiutil attach /Applications/Install\ OS\ X\ Yosemite.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app


hdiutil convert /Volumes/install_app/BaseSystem.dmg -format UDSP -o /tmp/Yosemite


hdiutil resize -size 8g /tmp/Yosemite.sparseimage


hdiutil attach /tmp/Yosemite.sparseimage -noverify -nobrowse -mountpoint /Volumes/install_build


rm /Volumes/install_build/System/Installation/Packages


cp -rp /Volumes/install_app/Packages /Volumes/install_build/System/Installation/


cp -rp /Volumes/install_app/BaseSystem.chunklist /Volumes/install_build


cp -rp /Volumes/install_app/BaseSystem.dmg /Volumes/install_build


hdiutil detach /Volumes/install_app


hdiutil detach /Volumes/install_build


hdiutil resize -size `hdiutil resize -limits /tmp/Yosemite.sparseimage | tail -n 1 | awk '{ print $1 }'`b /tmp/Yosemite.sparseimage


hdiutil convert /tmp/Yosemite.sparseimage -format UDTO -o /tmp/Yosemite


rm /tmp/Yosemite.sparseimage


mv /tmp/Yosemite.cdr ~/Desktop/Yosemite.iso

26 replies
Sort By: 
Question marked as ⚠️ Top-ranking reply

Dec 28, 2014 12:58 AM in response to EDLIU

If you prefer to make a bootable dvd, you can do it this way:


After downloading the full Yosemite installer app from the Mac App Store, run these 14 commands in Terminal to create a Yosemite.iso file and then burn it to a dual layer DVD with Disk Utility. You may then boot up from it by holding the option key down and then install Yosemite.


hdiutil attach /Applications/Install\ OS\ X\ Yosemite.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app


hdiutil convert /Volumes/install_app/BaseSystem.dmg -format UDSP -o /tmp/Yosemite


hdiutil resize -size 8g /tmp/Yosemite.sparseimage


hdiutil attach /tmp/Yosemite.sparseimage -noverify -nobrowse -mountpoint /Volumes/install_build


rm /Volumes/install_build/System/Installation/Packages


cp -rp /Volumes/install_app/Packages /Volumes/install_build/System/Installation/


cp -rp /Volumes/install_app/BaseSystem.chunklist /Volumes/install_build


cp -rp /Volumes/install_app/BaseSystem.dmg /Volumes/install_build


hdiutil detach /Volumes/install_app


hdiutil detach /Volumes/install_build


hdiutil resize -size `hdiutil resize -limits /tmp/Yosemite.sparseimage | tail -n 1 | awk '{ print $1 }'`b /tmp/Yosemite.sparseimage


hdiutil convert /tmp/Yosemite.sparseimage -format UDTO -o /tmp/Yosemite


rm /tmp/Yosemite.sparseimage


mv /tmp/Yosemite.cdr ~/Desktop/Yosemite.iso

Reply

Apr 28, 2015 3:38 AM in response to tywebb13

some people adds these two lines to the commands to copy the installer dependencies after removing the "Packages" links, are these needed? Mavericks doesn't have these..


cp -rp /Volumes/install_app/BaseSystem.chunklist /Volumes/install_build/BaseSystem.chunklist


cp -rp /Volumes/install_app/BaseSystem.dmg /Volumes/install_build/BaseSystem.dmg

Reply

Jul 26, 2015 9:35 PM in response to tywebb13

Excellent work. Thanks for the solution, tywebb13! I took your commands and altered them for a script that one can simply place INSIDE the root folder of the Install OS X Yosemite.app folder and run from that context to generate an ISO on the desktop. I have further confirmed that this DVD ISO will work to install OSX 10.10 on valid VMware ESXi installations with version 5.5 of the hypervisor running. You must configure the guest in EFI boot mode with OSX 10.7 or above in order to successfully load the installer (this is what tells ESX to "prove" to the virtual guest that you are running on Apple hardware; otherwise you will get a "not permitted" symbol during the boot sequence). You must also use the Disk Utility upon launching the installer to format your target disk before the installer will pick it up as a valid resource. No special command-line hacks were needed to make this work. The formatting process with the BaseSystem image makes this all possible. Here's a consolidated script you can use in one go:


#!/bin/bash

hdiutil attach ./Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app
hdiutil convert /Volumes/install_app/BaseSystem.dmg -format UDSP -o ./Yosemite
hdiutil resize -size 8g ./Yosemite.sparseimage
hdiutil attach ./Yosemite.sparseimage -noverify -nobrowse -mountpoint /Volumes/install_build
rm /Volumes/install_build/System/Installation/Packages
cp -rp /Volumes/install_app/Packages /Volumes/install_build/System/Installation/
cp -rp /Volumes/install_app/BaseSystem.chunklist /Volumes/install_build
cp -rp /Volumes/install_app/BaseSystem.dmg /Volumes/install_build
hdiutil detach /Volumes/install_app
hdiutil detach /Volumes/install_build
hdiutil resize -size `hdiutil resize -limits ./Yosemite.sparseimage | tail -n 1 | awk '{ print $1 }'`b ./Yosemite.sparseimage
hdiutil convert ./Yosemite.sparseimage -format UDTO -o ./Yosemite
rm ./Yosemite.sparseimage
mv ./Yosemite.cdr ~/Desktop/Yosemite.iso


Provided that you have the installer in the standard Applications folder, place this script INSIDE the .app folder, like so:


nano /Applications/Install\ OS\ X\ Yosemite.app/makebootableiso.sh


And then cd to that directory and run it:


cd /Applications/Install\ OS\ X\ Yosemite.app/
chmod +x makebootableiso.sh
./makebootableiso.sh


For ESXi, simply configure your VM Guest as "OSX 10.7 64-bit" and use EFI boot mode. Upload the ISO to your data store so that you don't belabor the installation process with network-attached access. Attach the ISO image you created to the virtual DVD drive and it should load with the Apple logo and a progress bar. Once you get to the installer, open Disk Utility from the menu system and format your target disk, then proceed as usual with the installation of OS X.


Enjoy.

Reply

Jul 27, 2015 4:25 AM in response to EDLIU

There is a very simple on line command to create the full Yosemite

installer on a USB stick. The command line function is hidden

inside the Yosemite installer itself.


First, obviously the USB stick needs to be formatted to a single GUID

partition with OS X extended, journaled filesystem. You will also need to

download the installer app from the Mac App store.


Then execute the following command:

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


/Volumes/Untitled is the path to the USB stick. Replace "Untitled" with the volume

name you gave the USB stick.


The sudo command will request a password and you must have adminisrator

privileges to create.


Depending on how fast the USB stick is, it can take a while to complete.


This will not only create an installer for OS X but will also have Disk Utility

on it as well.


I used this to create a USB stick installer to do a full clean install on a 2009

iMac that I was going to repurpose. All worked well.

Reply

Sep 11, 2015 4:33 AM in response to Pellepennan

Pellepennan wrote:


ETA: Actually in response to woodmeister50

This works really well for a re-install. But is there a way to tweak it to create a totally clean install, removing previous user(s)?

The OS X installers do not alter the install destination short of replacing the OS. You have to erase the disk prior to installing using Disk Utility.

Reply

Sep 11, 2015 2:31 PM in response to nilsonj

I followed your instruction precisely, using copy/paste for all commands. However, I get an error when I try to run the script:


iMac27:Install OS X Yosemite.app imac27$ ./makebootableiso.sh

-bash: ./makebootableiso.sh: /bin/bash : bad interpreter: No such file or directory


Suggestions?


TIA

Reply

Jan 22, 2016 6:16 PM in response to tywebb13

I tried your procedure for making a bootable dvd installer.


It works!


The only problem I had was that I was logged into the terminal as root and there is no ~/Desktop/Yosemite.iso. Anyhow, I just moved the Yosemite.cdr to another directory and then burned it to a dvd using Diskutility.


Thanks a bunch.


Regards,


Don James

Reply

Jan 25, 2016 1:25 PM in response to tywebb13

Hi tyhwebb13,


I tried your procedure for making a dvd install disk for Yosemite. It works okay, but hangs up right at the very end of the install at the "Setting up your Mac" screen. At this point, I turned off my computer by holding down the start button. I turned the computer on again and booted from the install hard drive. It booted up and went right back to the "Setting up your Mac" screen and finished the install.


My computer is a Macpro3,1 with 12 GB of ram.


I was just wondering if anyone else had this same experience.


I think I remember reading somewhere that the Yosemite install works better if the install is a writable medium such as a hard drive or usb thumb drive.


Regards,


donjames

Reply

Feb 6, 2016 2:18 AM in response to Barney-15E

following smae method for El Capitan


hdiutil attach /Applications/Install\ OS\ X\ El\ Capitan.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app


hdiutil convert /Volumes/install_app/BaseSystem.dmg -format UDSP -o /tmp/ElCapitan


hdiutil resize -size 8g /tmp/ElCapitan.sparseimage


hdiutil attach /tmp/ElCapitan.sparseimage -noverify -nobrowse -mountpoint /Volumes/install_build


rm /Volumes/install_build/System/Installation/Packages


cp -rp /Volumes/install_app/Packages /Volumes/install_build/System/Installation/


cp -rp /Volumes/install_app/BaseSystem.chunklist /Volumes/install_build


cp -rp /Volumes/install_app/BaseSystem.dmg /Volumes/install_build


hdiutil detach /Volumes/install_app


hdiutil detach /Volumes/install_build


hdiutil resize -size `hdiutil resize -limits /tmp/ElCapitan.sparseimage | tail -n 1 | awk '{ print $1 }'`b /tmp/ElCapitan.sparseimage


hdiutil convert /tmp/ElCapitan.sparseimage -format UDTO -o /tmp/ElCapitan


rm /tmp/ElCapitan.sparseimage


mv /tmp/ElCapitan.cdr ~/Desktop/ElCapitan.iso



If you prefer to make a bootable dvd, you can do it this way:


After downloading the full ElCapitan installer app from the Mac App Store, run these 14 commands in Terminal to create a ElCapitan.iso file and then burn it to a dual layer DVD with Disk Utility. You may then boot up from it by holding the option key down and then install ElCapitan.

Reply

Dec 13, 2016 1:58 PM in response to tywebb13

Hello

He followed this tutorial to make a bootable Yosemite DVD.

And guess what I did, well after doing the 14 commands.

But I insert the DVD and it comes out to me. OS X base system is this normal?

Expect something like Yosemite or Install Dvd, haha.


I have made captures:

Http://imgur.com/a/gyeL1

Thank you

Reply

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Create A Bootable OS X Yosemite DVD/USB Drive

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.