我正在使用Android Studio,并希望安装“Hardware_Accelerated_Execution_Manager”(HAXM)。安装“silent_install -log ...”失败,并显示:
Property(S): VT_Not_Support = This computer does not support Intel Virtualization Technology (VT-x). HAXM cannot be installed. Please refer to the Intel HAXM documentation for more information. Property(S): XD_Not_Support = This computer does not support Intel Execute Disable Bit (XD) or it is disable in the BIOS. HAXM cannot be installed. Please refer to the Intel HAXM documentation for more information.
但是调用“silent_install -c”结果:
VT support -- yes NX support -- yes
我在BIOS中找不到一些用于管理XD / VT的选项。
我的笔记本电脑:“TravelMate P253-M”,采用英特尔处理器i3-3110M。
请帮忙!
关心Wicki
答案 0 :(得分:0)
根据ark.intel.com,您的CPU确实支持VT-X和XD / NX位,因此需要检查。
bcdedit /set hypervisorlaunchtype off
bcdedit /set nx AlwaysOn
答案 1 :(得分:0)
bcdedit / set hypervisorlaunchtype off
启动窗口,日志:如前所述+错误1925.您没有足够的
为计算机的所有用户完成此安装的权限。日志
以管理员身份登录,然后重试此安装
runas / profile / user:localhost \ administrator cmd
cmd:silent_install -log haxm2.log结果:HAXM安装成功!
但消息“VT_Not_Support =此计算机不支持...”,如前所述!
然后我卸载了haxm,bcdedit / set hypervisorlaunchtype auto,
启动窗口,runas ...见上文
非常感谢编码器! 关心Wicki