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.
I was required to write a small listener. This listener doesn’t have to do anything fancy – it has to process input from a network source (over TCP) and shove it into a file with random name. The quick and dirty solution is to use netcat (nc). A short command such as this would do…
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…
TL;DR: I am required to use Citrix Workspace and with it – AppProtection and it is blocking my ‘snap’ command. I’ve been using Citrix Workspace version 24.8.0.98 and had a weird issue when running ‘snap’ command: The root cause had to do with the integration between Citrix AppProtection and libX11.so, which blocked running multiple applications….
Just to remember, there is an explanation here, from which the following directive can be taken: (cpio -id; zcat | cpio -id) < /path/to/initrd.img Related posts: Extracting multi-layered initramfs Rapid-guide – Updating RedHat initrd Replace Old NTP Commands With “chronyc” on a Modern Linux Extracting/Recreating RHEL/Centos6 initrd.img and install.img Powered by YARPP.
In particular – Oracle UEK, which “claims” to be 2.6.39-xxx, but is actually 3.0.x with a lower version number. Several misbehaviors (or differences) of version 3 can be found. One of them is related to BackupExec. The service would not start on OEL6 with UEK kernels. The cause of it is an incorrect use of…
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….