Reputation: 123
Does anyone know any good training or even reference books on kvm/libvirt?
Upvotes: 0
Views: 836
Reputation: 507
KVM and virtualization is a rather specialized topic, so don't expect to find much information about them.
There is, however, quite detailed documentation of KVM API in the kernel source tree. You can find it here. Furthermore, this article can serve as a getting started guide on Linux KVM API.
Yet a another source of knowledge is the actual source code for VMMs which rely on KVM, like qemu. Particularly, have a look at i386 target implementation.
Upvotes: 2