如何使用 KVM 配置 spice?

如何使用 KVM 配置 spice?

我正在尝试安装和配置香料

但是,我找不到有关如何执行此操作的资料来源。

答案1

如果有人想使用带有 virsh 的普通 Libvirt 来实现这一点。

首先将域导出为 XML:

virsh dumpxml <domain_name> > <domain_name>.xml

然后,编辑上面生成的 <domain_name>.xml 文件并确保其中包含以下内容:

<devices>
...
<graphics type='spice' autoport='yes'>                                                                                                                                                 
    <listen type='address'/>                                                                                                                                                             
    <image compression='off'/>                                                                                                                                                           
</graphics>
...
</devices>

取消定义先前的域:

virsh undefine <domain_name>

使用编辑的 XML 定义新域:

virsh define <domain_name>.xml

之后,您可以使用 virt-viewer、remote-viewer 等工具连接到端口 5900 上的 SPICE。

答案2

使用“aqemu”,可以在 Ubuntu 存储库中找到。它将 kvm 配置保存到 /home/${user}/.aqemu/

相关内容