Я использую виртуальную машину с Ubuntu на сервере Ubuntu 12.04. К сожалению, машина работает очень медленно (только htop потребляет 15%), даже имея 8 ядер и т.д.
Вы знаете способ найти узкое место виртуальных машин / машин? Память, пропускная способность сети, чтение с диска и т.д.?
Вы видите какую-либо ошибку в моей конфигурации?
Я использую QEMU версии 1.0.
Мой конфигурационный файл:
<domain type='qemu'>
<name>vm</name>
<memory>10485760</memory>
<currentMemory>8388608</currentMemory>
<vcpu>8</vcpu>
<os>
<type arch='x86_64' machine='pc-1.0'>hvm</type>
<boot dev='hd'/>
<bootmenu enable='no'/>
</os>
<features>
<acpi/>
<apic/>
</features>
<clock offset='utc'/>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>restart</on_crash>
<devices>
<emulator>/usr/bin/qemu-system-x86_64</emulator>
<disk type='file' device='disk'>
<driver name='qemu' type='qcow2' cache='none'/>
<source file='/vm//drives/root.qcow2'/>
<target dev='vda' bus='virtio'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
</disk>
<controller type='ide' index='0'>
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
</controller>
<interface type='bridge'>
<mac address='a0:a0:a0:a0'/>
<source bridge='virbr0'/>
<model type='rtl8139'/>
<bandwidth>
</bandwidth>
<address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
</interface>
<input type='tablet' bus='usb'/>
<input type='mouse' bus='ps2'/>
<graphics type='vnc' port='-1' autoport='yes' keymap='en-us'/>
<video>
<model type='cirrus' vram='9216' heads='1'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
</video>
<memballoon model='virtio'>
<address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/>
</memballoon>
</devices>
</domain>