主持人:
- 作業系統(Ubuntu 20.10 的變體):
uname -a
Linux ... 5.8.0-7642-generic #47~1614007149~20.10~82fb226-Ubuntu SMP Tue Feb 23 02:59:01 UTC x86_64 x86_64 x86_64 GNU/Linux
- 安裝了 nVidia RTX 3090 GPU。驅動程式版本 460.32.03。
- 英特爾酷睿 i9-10900K CPU
- 有效無頭
客人:
- 作業系統:Ubuntu 20.04 桌面版,
- 作業系統/核心版本:5.11.0-41-generic
- 架構:x86 64 位
Qemu 可執行檔是在最新來源 6.2.0-rc3 的主機上建置的,命令列選項為./configure
:
--prefix=$HOME/.bin --target-list=x86_64-softmmu --enable-kvm --enable-vnc --enable-gtk --enable-vte --enable-xkbcommon --enable-sdl --enable-spice --enable-spice-protocol --enable-virglrenderer --enable-opengl --enable-guest-agent --enable-avx2 --enable-avx512f --enable-hax --enable-system --enable-linux-user --enable-libssh --enable-linux-aio --enable-linux-io-uring --enable-modules --enable-gio --enable-fuse --enable-fuse-lseek
Guest Ubuntu 是透過下載的 ISO 映像安裝的。安裝後,執行VM的Qemu指令行為:
qemu-system-x86_64 -hda ubuntu-desktop.qcow2 -m 2G -smp 8 -d guest_errors -device virtio-vga-gl -display gtk,gl=on,show-cursor=on -net nic,model=virtio -net user,hostfwd=tcp::5555-:22 -chardev qemu-vdagent,id=ch1,name=vdagent,clipboard=on -device virtio-serial-pci -device virtserialport,chardev=ch1,id=ch1,name=com.redhat.spice.0
控制台中有一些輸出:
libEGL warning: DRI3: failed to query the version
qemu-system-x86_64: warning: AT-SPI: Could not obtain desktop path or name
qemu-system-x86_64: warning: atk-bridge: GetRegisteredEvents returned message with unknown signature
qemu-system-x86_64: warning: atk-bridge: get_device_events_reply: unknown signature
qemu-system-x86_64: warning: atk-bridge: get_device_events_reply: unknown signature
Invalid write at addr 0x0, size 4, region 'acpi-cpu-hotplug', reason: invalid size (min:1 max:1)
... duplicates of the above line ...
gl_version 45 - core profile enabled
這個Qemu VM的問題是1)如果我替換-device virtio-vga-gl
為-vga virtio
,VM運行得很快,但是在替換下-device virtio-vga-gl
,它運行得很慢,包括ssh。 2)啟動時出現許多故障,如下圖所示。如果我替換-device virtio-vga-gl
為,故障就會消失-vga virtio
。然而,在 下-device virtio-vga-gl
,這些失敗會重複出現,而且 Qemu 視窗無法進入登入畫面(所以我必須使用 ssh)。 3)我期望OpenGL渲染器應該是“virgl”,但它仍然是軟體“llvmpipe(LLVM 13.0.0,128位元)”
-vga virtio
所以我的問題是: 1)如果替換為Qemu VM 為什麼運行得這麼慢-device virtio-vga-gl
?任何選項有問題嗎? 2)為什麼啟動時會出現這麼多故障?我沒有做任何壞事。 3) 為什麼這個-display virtio-vga-gl -display gtk,gl=on
選項不為客戶機提供加速virgl
GPU 來有效地使用主機強大的 GPU?
到目前為止,我已經提供了大量用於故障排除的資訊。這是另一個希望有用的信息:
$ dmesg|grep virgl
[ 164.657541] [drm] features: +virgl +edid -resource_blob -host_visible
如果您需要其他資訊來進行故障排除,請告訴我。感謝您對這個 Qemu 問題的幫助。
答案1
當我將客戶作業系統從 Ubuntu 更改為 RHEL 後,所有啟動問題都消失了。