Dmg dosyası (OS X El Capitan.app/Contents/SharedSupport/InstallESD.dmg dosyasını yükleyin) önyüklenebilir görüntü değildir.
Önyüklenebilir bir dosya oluşturmak için aşağıdaki komut dosyasını kullanın. Bazı yolları değiştirmeniz gerekebilir (yani son satırdaki kullanıcı adı ve 6. satırdaki OS X El Capitan.app (ve iç InstallESD.dmg dosyasını yükleme) yolu):
#!/bin/bash
# Create bootable El Capitan ISO
# Mount the installer image
hdiutil attach "/Applications/Install OS X El Capitan.app/Contents/SharedSupport/InstallESD.dmg" -noverify -nobrowse -mountpoint /Volumes/esd
# Create empty cdr image
hdiutil create -o ElCapitan.cdr -size 8000m -layout SPUD -fs HFS+J
# Mount the cdr image
hdiutil attach ElCapitan.cdr.dmg -noverify -nobrowse -mountpoint /Volumes/iso
# Restore Base System to the cdr image
asr restore -source /Volumes/esd/BaseSystem.dmg -target /Volumes/iso -noprompt -noverify -erase
# Remove Package link and replace with actual files
rm /Volumes/OS\ X\ Base\ System/System/Installation/Packages
# Copy Base System
cp -rp /Volumes/esd/Packages /Volumes/OS\ X\ Base\ System/System/Installation
cp -rp /Volumes/esd/BaseSystem.chunklist /Volumes/OS\ X\ Base\ System/
cp -rp /Volumes/esd/BaseSystem.dmg /Volumes/OS\ X\ Base\ System/
# Unmount the installer image
hdiutil detach /Volumes/esd
# Unmount the cdr image
hdiutil detach /Volumes/OS\ X\ Base\ System
# Convert the cdr to ISO/CD master
hdiutil convert ElCapitan.cdr.dmg -format UDTO -o ElCapitan.iso
# Rename the ISO and move it to the desktop
mv ElCapitan.iso.cdr $HOME/Desktop/ElCapitan.iso
# Clean up temporary file
rm ElCapitan.cdr.dmg
Bir metin düzenleyicideki içeriği düz metin olarak yeni bir belgeye yapıştırın ve masaüstünüzde prepar_elcapitan_cdr.sh olarak kaydedin.
Terminal'i açın, komut dosyasını değiştirin ve yürütün:
chmod +x ~/Desktop/prepare_elcapitan_cdr.sh
cd ~/Desktop
./prepare_elcapitan_cdr.sh
VM'den elcap.dmg dosyasını ayırın. Son ElCapitan.iso dosyasını yükleyici iso olarak kullanın ve sanal SATA Port 1'e ekleyin. ElCapitan.cdr.dmg dosyasını silebilirsiniz.