Qemu-kvm command not found

I installed kvm on my computer using:

sudo apt-get install qemu-kvm

But when I try to run the command:

qemu-kvm -m 384 -cdrom guestos.iso -hda image.img -boot d

to download the ISO image from cdrom, it reports the error "qemu-kvm command not found". Am I missing the installation of any package? And if not, what is missing?

+3
source share
1 answer

Try kvm -m 384 -cdrom guestos.iso -hda image.img -boot d

+5
source

Source: https://habr.com/ru/post/1778569/


All Articles