본문 바로가기

개발

Android Studio Error Opening Emulator Solution Tip

728x90

Android Studio 의 Emulator 로 개발을 하다 보면 간혹 Android Studio Error Opening Emulator 가 발생하면서 Emulator 가 실행 되지 않는 문제가 발생한다.

emulator: ERROR: x86 emulation currently requires hardware acceleration! Please ensure KVM is properly installed and usable. CPU acceleration status: This user doesn't have permissions to use KVM (/dev/kvm). The KVM line in /etc/group is: [LINE_NOT_FOUND] If the current user has KVM permissions, the KVM line in /etc/group should end with ":" followed by your username. If we see LINE_NOT_FOUND, the kv More info on configuring VM acceleration on Linux: https://developer.android.com/studio/run/emulator-acceleration#vm-linux General information on acceleration: https://developer.android.com/studio/run/emulator-acceleration.

 

이 문제는 아래 방법으로 해결이 가능하다.

 

1. apt 로 패키지 설지

sudo apt-get install qemu-kvm libvirt-bin ubuntu-vm-builder bridge-utils

2. /dev/kvm 에 권한 설정

sudo chown [User ID]:[User ID] -R /dev/kvm

 

이렇게 처리하면 해결이 가능합니다~~~:)