OSX on VirtualBox: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Thomas (Diskussion | Beiträge) |
Thomas (Diskussion | Beiträge) |
||
| (2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 16: | Zeile 16: | ||
VBoxManage setextradata $VM "VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1 | VBoxManage setextradata $VM "VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1 | ||
</pre> | </pre> | ||
| + | |||
| + | *http://suzywu2014.github.io/ubuntu/2017/02/23/macos-sierra-virtualbox-vm-on-ubuntu | ||
| + | =Auflösung 1920x1080= | ||
| + | *VBoxManage setextradata "$VM" "VBoxInternal2/EfiGraphicsResolution" "1920x1080" | ||
| + | |||
| + | =Recovery Boot= | ||
| + | *http://anadoxin.org/blog/disabling-system-integrity-protection-from-guest-el-capitan-under-virtualbox-5.html | ||
Aktuelle Version vom 22. November 2017, 14:35 Uhr
Anpassungen
#!/bin/bash VM=$1 VBoxManage modifyvm $VM --cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff VBoxManage setextradata $VM "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "iMac11,3" VBoxManage setextradata $VM "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0" VBoxManage setextradata $VM "VBoxInternal/Devices/efi/0/Config/DmiBoardProduct" "Iloveapple" VBoxManage setextradata $VM "VBoxInternal/Devices/smc/0/Config/DeviceKey" "ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc" VBoxManage setextradata $VM "VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC" 1
Auflösung 1920x1080
- VBoxManage setextradata "$VM" "VBoxInternal2/EfiGraphicsResolution" "1920x1080"