I am currently taking an operating systems class and I need to use qemu to run a small operating system that my professor provided. I am trying to use qemu within an ubuntu 12.0
Try with sudo modprobe kvm-intel
.
In order to have the module automatically loaded at the startup of the virtual machine, do the following:
sudo vim /etc/modules.conf
G
to go to the end of the document and then o
to begin inserting.kvm-intel
and press Enter, producing a new line.Esc
to return to the Normal mode of vim. "--INSERT--" will disappear from
the bottom.vim
by writing :wq
.You are done. Try to reboot and load the nested virtual machine.