|
|
虚拟机装苹果系统遇到的The CPU has been disabled by the guest operating system的错误
虚拟机中安装MAC 10.8.2的过程中,出现下面状况的提示:
“The cpu has been disabled by the guest operating system. You will need to power off or reset the virtual machine at this point”
网上找到的方法如下:
编辑vmx的文件,添加下面这个语句。
cpuid.1.eax = "0000:0000:0000:0001:0000:0110:1010:0101"
新的i3,i5,i7cpu,虚拟机会对对核心进行检验,上面的语句的特点,就是绕过这些检验。
语句的原理是用一个mask骗过不必要的cpu检验
另外,也可以在vmx文件的最后添加两行:
monitor_control.restrict_backdoor = "TRUE"
monitor_control.enable_svm = "TRUE"
上面方法都是百度来的,都实验过了,但仍然不成功。测试用的CPU是AMD的,是支持虚拟化的,不知道会不会是AMD的问题呢?目前尝试了多次,仍然没有找到相应的解决办法。 |
|