BaoDingStyle
BaoDingStyle

Reputation: 23

Android emulator failed to start on Arch Linux, always bootloop

I have Arch Linux installed on my laptop, I installed Android studio too. From this system I can almost develop anything I want

But I cannot boot android emulator either hardware accelerate or not.

When I get the emulator updated to the latest, it keep showing me the following message

Emulator: KVM: injection failed, MSI lost (Operation not permitted)

and I have no idea what's it talking about.

enter image description here

Upvotes: 2

Views: 3014

Answers (1)

kaushalyap
kaushalyap

Reputation: 13617

Please install qemu if not install

sudo packman -S qemu

sudo adduser $USER kvm

Then close the android studio and logout and log back in. After that open the android studio and open the emulator.

Reference: https://stackoverflow.com/a/45749003/7356355

Upvotes: 1

Related Questions