Kvm-Virtualization

virt-install 後啟用 vnc

  • May 30, 2020

我已經使用 virt-install 創建了一個虛擬機graphics --none。我想啟用vnc。我試過了

virsh -c qemu:///system qemu-monitor-command vm171-SC-1 --hmp change vnc :3

但它不起作用

virsh -c qemu:///system qemu-monitor-command vm171-SC-1 --hmp info vnc Server: disabled

執行 virt-install 後如何啟用 vnc?我不想在啟用 vnc 的情況下安裝(即 –graphics vnc,listen=0.0.0.0,port=)不是一個選項,因為我希望它將其輸出發送到我所在的同一個終端。

您可以使用 virsh 編輯域 xml 並附加圖形元素:virsh edit <domain>

這是用於 vnc 支持的 xml 片段

<graphics type='vnc' port='5901' autoport='yes' listen='0.0.0.0'>
 <listen type='address' address='0.0.0.0'/>
</graphics>

引用自:https://serverfault.com/questions/701175