Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

grant current user access to /dev/kvm

first install dependecies of kvm from android studio site then execute following command

Add your user to kvm group using:
sudo adduser $USER kvm

If still showing permission denied:
sudo chown $USER /dev/kvm
Comment

grant current user access to /dev/kvm

To check the ownership of /dev/kvm use

ls -al /dev/kvm
The user was root, the group kvm. To check which users are in the kvm group, use

grep kvm /etc/group
This returned

kvm:x:some_number:
on my system: as there is nothing rightwards of the final :, there are no users in the kvm group.

To add your user to the kvm group, you could use

sudo adduser $USER kvm
Comment

grant current user access to /dev/kvm

ls -al /dev/kvm
Comment

PREVIOUS NEXT
Code Example
Shell :: check user group console linux 
Shell :: base64 decode command line ubuntu 
Shell :: how to check if helm is installed 
Shell :: get a remote branch git 
Shell :: refresh gnome shell 
Shell :: copy file batch 
Shell :: git get develop changes to my branch 
Shell :: python listen on port 
Shell :: awk columns 
Shell :: remove letter in string bash 
Shell :: ubuntu iso download 
Shell :: apache license 
Shell :: install brew on mac 
Shell :: ubuntu use pip as pip3 
Shell :: npm legacy-peer-deps 
Shell :: terminal get size of file 
Shell :: bash load file into list 
Shell :: copy a file from docker container to local machine 
Shell :: rm -rf * 
Shell :: hoe to install LAMP on ubuntu 
Shell :: readme style 
Shell :: install nano in docker container 
Shell :: run mutiple sass files at once 
Shell :: HOW TO SEARCH FOR A FILE IN COMMAND PROMPT 
Shell :: http sever with ssl start 
Shell :: set up ssh windows 10 
Shell :: scrcpy use on linux 
Shell :: File "manage.py", line 17 ) from exc ^ SyntaxError: invalid syntax 
Shell :: change username ubuntu 
Shell :: get .net version 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =