Let me first say, that it does work for Linux guest. It doesn’t work on Windows guest because there is a know bug (/issue) with the default hardware layout – made of i440FX BIOS. VirtManager would not allow us to replace the settings, so we need to create the VM ourselves using XML. You can export your XML settings (of an existing VM) using the command
virsh dumpxml > /tmp/VM_NAME.xml
There are relevant fields there which you might want to save for later, like MAC addresses, network settings, and so on.
You can use this XML file to build your VM anew. Note that you will want to modify the network settings, the name and the UUID. Also – you will need a newer QEMU command (through the package qemu-system-x86), you can find in the Centos updates repository, . It has been providing me with /usr/bin/qemu-system-x86_64 command, which I am using, instead of the default qemu command used by default by VirtManager.
My Windows VM XML file (as a reference you can copy and use) is provided below. Major modifications are required to the hardware settings of the Windows VM – moving from PCI to PCIE, changing from IDE to SATA or VirtIO – and the provided XML gives a good reference of how this file should look like. This was taken from a machine tested to allow USB hot-add/remove via the method provided in my previous post.
It means I cannot resize video. Using the x11 generic driver does not allow resize. I’ve searched for a solution just now, and got to this web page. After some tweeks with my own config file (to remind you, it was built using ATI’s tools), I’ve got it to work correctly. Here’s the updated config…
Installation of minimal selection of Centos 5 – only base, core and dialup selections, will leave a small-sized system, with the minimum required. This is a good setup to start setting up a firewall, and it lets you add any required package later using ‘yum’. This said, you cannot forward X over SSH at this…
Using Nvidia propriety driver version 9755 allows using AIGLX instead of the slower and deprecated GLX interface. AIGLX nowadays is part of Xorg 7.1 and above. You can find a guide in OpenSuse Wiki which will describe the required actions. I have attached here my own xorg.conf file which allows Dual-head setup with 2 LCD…
As the owner of a nice laptop running Hardy, I had a huge performance degradation when accessing USB storage devices. Speed could reach 1MB/s at most, and usually, half that speed. The trick that solved my problem was suggested in this post, and after I have tested it, I was happy with the results. The…
For some reason (probably a typo) I’ve missed an important character in an example I gave here, but I have just recently fixed it. Anyhow, to clarify this, here is the extended description of the correction. The $IFS Bash system variable defines what is the default separator between strings. Changing it can help when dealing…
DRBD is a low-cost shared-SAN-like solution, which has several great benefits, among which are no single point of failure, and very low cost (local storage and network cable). Its main disadvantages are in the need to constantly monitor it, and make sure it does what’s expected. Also – in some cases – performance might be affected greatly….