Kroese
Kroese
Only if you enable KVM..
I really think that if you upgrade to a newer kernel or newer CentOS the problem with KVM may disappear. So I dont know if thats an option for you?
I use Ubuntu for it, but it should also work on other distros as long as its not CentOS.
Its possible to add extra arguments for IDE and E1000 hardware, but that will not override the existing disk/network so it will still bluescreen because the SCSI devices will stay...
Looks like you did it correctly. Are you sure the container you build is using the modified files and not just pulling the stock container? In any case, if you...
To pass-through your Intel iGPU, add the following lines to your compose file: ```yaml environment: GPU: "Y" devices: - /dev/dri ``` However, this feature is mainly so that you can...
You can SSH to the container, if you do something like: ```yaml environment: HOST_PORTS: "22" ports: - 22:22 ``` But I have no experience with Virt-Manager, so I cannot say...
The container forwards all the traffic to the VM, and Windows does not respond on port 22. So this ```HOST_PORTS: "22"``` is really important to prevent the container from forwarding...
It totally depends on what you are trying to achieve. In the screenshot I see the GPU adapter in Windows device manager, so that means it works and everything is...
@domrockt Its possible that this "GPU DOD" device has no DirectX. QEMU supports many different video devices, and this device is for transcoding videos, so obviously we need to tell...