Mavericks.app Contents Sharedsupport Installesd.dmg
This guide deals with 3 ways of making a boot disk from OSX 10.9 Mavericks the first one is the fastest and is done via the Terminal from a new command already in OSX Mavericks called createinstallmedia , the other 2 are older ways when Mavericks was in development and are done with a mixture of finder using Disk Utility and command line.
Jun 07, 2017 The process is simple and take only five to ten minutes to complete the process. All you have to enter some commands on Terminal app and you will create the ISO image of the new OS X. So, to create a bootable ISO file from the Mavericks App, Download OS X Mavericks here and If it tries to start the installation, just close it. Sep 04, 2015 1. To get the Mavericks InstallESD.DMG, right mouse on OS X Mavericks select Show Package Contents. Go to Contents/SharedSupport, InstallESD.dmg should be there. Make a double click on InstallESD.dmg to make a volume of Mavericks installation on the left side: How to get Mac OS X Mavericks.ISO from Mac OS X Mavericks.dmg?
Quickest Way
Download Mac OSX 10.9Mavericks but don’t install.
Attach your USB stick/drive.
Launch the Terminal from /Applications/Utilities and enter the command below and then your password when prompted, be sure to change the ‘Untitled‘ name in the below command to your external disk name:
Let it do its thing and there you have it, one bootable Mac OSX 9 drive.
This really is a super simple way – however if using the Terminal fills you with fear and dread, there are some GUI apps that can get the job done namely DiskMakerX and a new imaging tool that can clone a new disk very quickly – AutoDMG.
Alternative Ways of building a Bootable Mavericks OSX Disk.
To make a boot disk of OSX 10.9 Mavericks, first of all get the app or download via the App store, if downloaded it will file in the folder Applications.
Convert dmg file to bootable iso. The DMG image format is by far the most popular file container format used to distribute software on Mac OS X. Here’s how to convert a DMG file into an ISO file that can be mounted on a Windows PC.
Control / Left click Options, Show in Finder to get to the app, don’t install at this stage.
Located in the Applications Folder
Finding the InstallESD.dmg
To find the actual InstallESD.dmg file, control/left click the ‘Install OS X Mavericks’ app and choose show contents – then navigate to Shared Support folder.
Control/Right click to show contents
Navigate to Shared Support folder to see the InstallESD.dmg file
Mount InstallESD.dmg
Mavericks.app Contents Shared Support Installesd.dmg
Double click to mount the image.
Make Invisible Files Visible
We need to see the BaseSystem.dmg inside the InstallESD.dmg
Crank open Terminal and run:
This will show all invisible files have a look inside the mounted InstallESD.dmg
Mount an External Disk
Attach a USB/external drive – this guide uses the external drive name calledBootDisk, you need to make sure the format is correct, it needs to be Mac OSX Extended Journaled – it its not you can format that in Disk Utility.
Launch Disk Utility
Launch Disk Utility as found in Applications/Utilities and go to the Restore tab.
Drag BaseSystem.dmg to the Source field and your external disk to the Destination and click Restore.
This will mount your new OSX 10.9 external disk and name it OSX Base System – but we need to add the packages.
Fix the Packages
Couple of things to fix in the newly created boot disk, remove the Packagealias at System/Installation/ folder
Now from the previously mounted InstallESD.dmg copy over the Packages folder to the same location where we just removed the alias above.
Will take a while as it holds all the install packages.
Job done now you can boot from the OSX 10.9 disk.
Make the Visible back to Invisible
If you want all to return back to normal and hide the system files run a couple more commands in the Terminal
How to create the OSX 10.9 Mavericks Bootable Drive just via Terminal
Just for the crazy ones……after Mavericks is downloaded….and again this assumes you external disk is named BootDisk
Mount the InstallESD.dmg buried deep in the app
Swap to the newly mounted image
This puts you back in the Finder in front of the newly mounted InstallESD.dmg, go back to Terminal and clone the BaseSystem.dmg to the remote USB drive
This will change ‘BootDisk‘ to ‘OS X Base System‘
Remove the existing Packages alias link from the newly restored image
Copy the full OSX Mavericks Packages over to the new image….takes a while
And there it is! – to eject the new bootable USB OSX Mavericks 10.9 disk ‘cd’ to home and eject
Now you can boot up from your newly bootable disk and either Install OSX10.9 on another device or use the Terminal/Disk Utility or Firmware Password Utilities on another device.
# Mount the installer image |
hdiutil attach /Applications/Install OS X Mavericks.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app |
# Convert the boot image to a sparse bundle |
hdiutil convert /Volumes/install_app/BaseSystem.dmg -format UDSP -o /tmp/Mavericks |
# Increase the sparse bundle capacity to accommodate the packages |
hdiutil resize -size 8g /tmp/Mavericks.sparseimage |
# Mount the sparse bundle for package addition |
hdiutil attach /tmp/Mavericks.sparseimage -noverify -nobrowse -mountpoint /Volumes/install_build |
# Remove Package link and replace with actual files |
rm /Volumes/install_build/System/Installation/Packages |
cp -rp /Volumes/install_app/Packages /Volumes/install_build/System/Installation/ |
# Unmount the installer image |
hdiutil detach /Volumes/install_app |
# Unmount the sparse bundle |
hdiutil detach /Volumes/install_build |
# Resize the partition in the sparse bundle to remove any free space |
hdiutil resize -size `hdiutil resize -limits /tmp/Mavericks.sparseimage tail -n 1 awk '{ print $1 }'`b /tmp/Mavericks.sparseimage |
# Convert the sparse bundle to ISO/CD master |
hdiutil convert /tmp/Mavericks.sparseimage -format UDTO -o /tmp/Mavericks |
# Remove the sparse bundle |
rm /tmp/Mavericks.sparseimage |
# Rename the ISO and move it to the desktop |
mv /tmp/Mavericks.cdr ~/Desktop/Mavericks.iso |
commented Jul 14, 2014
Thanks for this script.. There doesn't seem to be a good guide. |