Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

qemu-kvm command not found [closed]

I have installed kvm in 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 boot an ISO image from cdrom, it gives the error stating "qemu-kvm command not found". Have I missed on installing any required package? And if not, what is missing?

like image 346
sahil Avatar asked Feb 25 '23 16:02

sahil


1 Answers

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

like image 149
Huang F. Lei Avatar answered Apr 09 '23 09:04

Huang F. Lei