How do I fix “Failed to sync vcpu reg” error?

前端 未结 30 3040
礼貌的吻别
礼貌的吻别 2020-11-28 04:03

I\'m trying to use the Intel HAX x86 emulator for Windows (8, if that matters). I installed everything and created an AVD for the android version, and everything appears co

相关标签:
30条回答
  • 2020-11-28 04:56

    I'm running boot2docker vm, just down it solved the issue.

    boot2docker down

    0 讨论(0)
  • 2020-11-28 04:57

    I had this problem. For me it was the HAXM version.

    When you get a new version of HAMX through the SDK Manager, it tells you that it is installed. It is not. You must go to this folder:

    <Android SDK>\extras\intel\Hardware_Accelerated_Execution_Manager\

    and run intelhaxm-android.exe manually. In my case, I had 1.0.6 and upgraded to 1.1.

    I think that what caused the error in the first place was that some other part of the SDK that I had updated needed 1.1.

    0 讨论(0)
  • 2020-11-28 04:59

    As mentioned by other answers, make sure no VirtualBox and docker service is running with following command in mac. (systemctl in Linux)

    $ launchctl list | grep 'VirtualBox\|docker'
    -       0   com.docker.helper
    640     0   com.docker.docker.2032
    31736   0   org.virtualbox.app.VirtualBox.948
    

    If so, kill the VBox and docker service.

    launchctl stop org.virtualbox.app.VirtualBox.948
    launchctl stop com.docker.docker.2032
    
    0 讨论(0)
  • 2020-11-28 04:59

    I was getting the same error. I'm guessing there are various reasons for this error, but in my case it was because of a service named ".NCG". The service is Network Content Guard by Inka Entworks, and seems to be some type of DRM solution. Once uninstalled, the emulator worked fine using HAX.

    0 讨论(0)
  • 2020-11-28 04:59

    I was on a mac and had this problem. I did not think I was running a VM (I have vbox but it isn't running). I restarted my computer and before starting any other apps I tried the emulator and it works fine.

    0 讨论(0)
  • 2020-11-28 05:00

    Yes, VirtualBox VMs have to be stopped. I also had to stop Docker for Mac. The error message only mentions VirtualBox, which confused me a little until I realized Docker for Mac is running xhyve.

    0 讨论(0)
提交回复
热议问题