Zur Installation von Mac OS X 10.10 Yosemite auf einem Mac benutzt man ja entweder den integrierten Installer oder man erstellt sich einen USB-Stick (Anleitung) – in Paralles, VMWare, VirtulBox und anderen Virtualisierungsumgebungen ist es aber am einfachsten von einer ISO zu booten. Diese zu erstellen ist eigentlich ganz einfach:
1) Mac OS X 10.10 Yosemite im Mac App Store Downloaden

2) Terminal öffnen und folgende Befehle ausfüren
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

Die ISO landet am Ende auf dem Schreibtisch. Viel Spaß damit 🙂
Quelle: http://blog.b-nm.at