I have a host with Linux Mint 18, and it has KVM like so:
Code:
/proc/sys/dev/cdrom $ lsmod | grep -i kvm
kvm_amd 65536 4
kvm 540672 1 kvm_amd
irqbypass 16384 1 kvm
I am installing kvm on a CentOS7 virtual machine (VM) so I can run another CentOS7 VM inside this VM!
No, this is not a typo. I am doing it for learning purposes.
There are two way to install virtualization like so:
Quote:
#yum group install "Virtualization Host"
or
# yum install qemu-kvm qemu-img virt-manager libvirt libvirt-python libvirt-client virt-install virt-viewer
|
I tried both cases, but I am not able to install kvm_amd on my virtual machine.
Code:
[root@server1 ~]# modprobe kvm_amd
modprobe: ERROR: could not insert 'kvm_amd': Operation not supported
#from Centos7 VM, kvm_amd is missing!:
[root@server1 ~]# lsmod | grep -i kvm
kvm 525409 0
What did I missed?
Thank you.