Create Bootable Usb Mavericks

This is just a small post to highlight that I have updated the site to include a specific page for Apple/OSX information.

In this tutorial video, I show you the easy way to make a bootable Mavericks USB drive and how to boot from that USB drive. NOTE: You must have the 'Install. Sep 15, 2020 Thank you so much. I have download the El Capitan OS after checking the compatible macOS with my old MacBook 2010. I was not able to make a bootable USB with the DMG file extension so I contacted the apple support team and they advise me to double click on the dmg then drag the.app to the application folder after that I can run the command on the terminal.

My latest addition to this page details the method I used to create a bootable recovery USB for OSX 10.9 Mavericks.

No, I didn’t research how to do this because I am bored or have nothing better to do……after I updated OSX to Mavericks 10.9, and Ubuntu to 13.10, some aspect of the process fried my partition table which systematically resulted in a failure to boot anything other than OSX despite trying multiple methods of repairing the partition table/EFI using gdisk and rEFInd among several other techniques. Needless to say, nothing worked and in the process of deciding to delete the Ubuntu and Windows 7 partitions to start again (by installing fresh versions of Ubuntu 13.10 and Windows 8.1), I accidentally wiped the OSX recovery partition.

Anywho, that left me in the unenviable position of having a MacBook with NO RECOVERY CAPACITY in case I did anything else stupid to my partitions or my partition tables.

Create Bootable Usb Software

One thing lead to another, and I researched a way of creating an external OSX Mavericks USB recovery drive, which when tested, worked flawlessly and in exactly the same manner as my original MacBook recovery partition.

So, anyone with a recent MacBook who tinkers with partitions and partition tables SHOULD CREATE A RECOVERY USB FOR OSX, just in case they find themselves without a bootable version of OSX or a bootable OSX recovery partition/tool.

Mavericks OS X is the latest update from the Apple for the MAC users. The new OS update is available as a free download via the App Store. On the same day we posted an article 2 Ways to Create Bootable Mavericks OS X USB Drive. But most of the users are looking for the way to create a bootable Mavericks ISO disc. Today we found a new guide which allows you to create the ISO disc from the Mavericks OS X installer package, with this way you can easily install the new OS on multiple systems.

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. Other wise you will lose the installation package from your hard drive. After that follow the steps below.

Read Also:Guide to Create Bootable USB Disc of Yosemite OS X
Read Also:Guide to Access Secret Wallpapers in Mavericks OS X

Create Bootable ISO from Mavericks App

Open the Terminal app on your Mac and run the following Terminal commands one by one.

Create Bootable Usb Mavericks Download

# 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

Create Bootable Usb Mac Disk Utility Mavericks

Create Bootable Usb Mavericks

# Rename the ISO and move it to the desktop
mv /tmp/Mavericks.cdr ~/Desktop/Mavericks.iso

Now the mavericks ISO Image files is created and you will see the ISO file on your desktop. If you want to convert the ISO file into DMG, then you will use the Disk Utility to convert it to DMG file if needed.

Create Bootable Usb Mavericks From Windows

Now you will use the ISO file or DMG file on your disc or USB drive to install the new OS on your multiple MAC.

Create Bootable Usb Mavericks Free

Source