Os X Mavericks Iso
2/13/2022by admin
Install Mac OS X 10.9.0 Mavericks.iso. Install Mac OS X 10.9.0 Mavericks.iso (5.69 GB) Choose free or premium download. FAST INSTANT DOWNLOAD. Jun 12, 2016 MacOS X 10.9 Mavericks VMWare Image. For the curious: This VM can be successfully converted to Parallels 16 by opening the file 'OS X Mavericks.vmx' in Parallels.Just make sure you give it enough CPU, RAM, and GPU specs for it to boot. The OS X BASE extracted from Windows doesn’t include the “Packages” folder that install important files for MAC OSX. BootdiskUtility is a great program that can restore 3.hfs OS X BASE System file with correct aliases, but locks the partition at 1.2GB which is not enough space to copy “Packages” folder (4.5GB) data to.

Created Sep 13, 2014
Create a bootable ISO from the OS X Mavericks app


mavericks-iso.sh
#!/bin/sh |
# Create a bootable ISO from the OS X Mavericks app |
# http://thezinx.com/misc/trend/create-bootable-dmg-iso-mavericks-app/ |
if [ !-f /Applications/InstallOSXMavericks.app/Contents/SharedSupport/InstallESD.dmg ];then |
echo'Download the OS X Mavericks App and then rerun this script.' |
open 'https://itunes.apple.com/us/app/os-x-mavericks/id675248567' |
exit 1 |
fi |
# Mount the installer image |
hdiutil attach /Applications/InstallOSXMavericks.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 -v /Volumes/install_build/System/Installation/Packages |
cp -rpv /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 -v /tmp/Mavericks.cdr ~/Desktop/Mavericks.iso |
commented Sep 13, 2014
Thanks to http://thezinx.com/misc/trend/create-bootable-dmg-iso-mavericks-app/ |
Os X Mavericks Iso Download

Os X Mavericks Iso File
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment
Comments are closed.