在 virt-install 后启用 vnc

在 virt-install 后启用 vnc

我使用 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=)不是一个选项,因为我希望它将其输出发送到我所在的同一终端。

答案1

您可以使用 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>

相关内容