늦깎이 IT 개발자

How to fix KVM permission denied error on Ubuntu 18.04 본문

Android

How to fix KVM permission denied error on Ubuntu 18.04

IamRandy 2019. 8. 25. 17:18

https://blog.chirathr.com/android/ubuntu/2018/08/13/fix-avd-error-ubuntu-18-04/

 

How to fix KVM permission denied error on Ubuntu 18.04 · Chirath R

How to fix KVM permission denied error on Ubuntu 18.04 13 Aug 2018 /dev/kvm device: permission denied is the error that I got while trying to run Android Virtual Device(AVD) on a fresh install of Ubuntu 18.04. The error message also shows a hint on what co

blog.chirathr.com

1. Install qemu-kvm

     sudo apt install qemu-kvm

2. Use the adduser command to add your user to the kvm group.

     sudo adduser <username> kvm

3. And then own the file /dev/kvm using chown.

     sudo chown <username> /dev/kvm