Why is KVM Host server CPU utilization very high, when the windows guest is idle

kvm-virtualizationqemu

I have Win 2008 running on a Ubuntu 10.04 host using KVM/QEMU. The version is 0.12.3. Event thought the Win 2008 is idle (no updates, most services are turned off), on the host server one of the core is pegged at 99%. Keeping the system average load above .60 most of the time.

I downloaded the latest version of qemu (0.14), thinking it may solve the issue. I have not upgraded yet. Since it needs to match up to the right kernel module. I just wanted to find out: How do I go about doing this upgrade? Kernel version is : 2.6.32-28-server

I started with the ./configure, but got a zlib check failed.

Thanks!

Best Answer

The configure Script check for dependency and verify that it's satisfied then generate a make file that you can use to compile and build the binary executable.

In this case give you zlib check failed because zlip ins't installed, install zlib and then try again .

Installing zlib on Debian is quite simple, just :

apt-get install zlib1g zlib1g-dev