无法完成安装:'unsupported configuration: hda-duplex not supported in this QEMU binary'

Linux 有问必答:如何修复“hda-duplex not supported in this QEMU binary”

编译自:http://ask.xmodulo.com/hda-duplex-not-supported-in-this-qemu-binary.html
原创:LCTT https://linux.cn/article-4304-1.html
译者: geekpi
本文地址:https://linux.cn/article-4304-1.html

2014-11-25 22:30   
评论: 2 分享: 2

提问
当我尝试在虚拟机中安装一个新的Linux时,虚拟机不能启动且报了下面这个错误:"unsupported configuration:
hda-duplex not supported in this QEMU
binary."(“不支持的配置:hda-duplex在此QEMU文件中不支持。”) 我该如何修复?

无法完成安装:'unsupported configuration: hda-duplex not supported in this QEMU binary'

这个错误可能来自一个当默认声卡型号不能被识别时的一个qemu bug。

无法完成安装:'unsupported configuration: hda-duplex not supported in this QEMU binary'

无法完成安装:‘不支持的配置:hda-duplex在此QEMU文件中不支持’

要解决这个问题,按照下面的做。

方案一: virt-manager

virt-manager中,打开虚拟机的虚拟硬件详细菜单,进入声卡选项,改变默认的设备型号为ac97。

无法完成安装:'unsupported configuration: hda-duplex not supported in this QEMU binary'

点击“应用”按钮并保存设置。看一下虚拟机现在是否可以启动了。

方案二: Virsh

如果你使用的是virsh 而不是virt-manager, 你可以编辑VM相应的配置文件。在节点中查找sound节点,并按照下面的默认声卡型号改成ac97

  1. <devices>
  2. . . .
  3. <sound model='ac97'>
  4. <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
  5. </sound>
  6. . . .
  7. </device>
上一篇:这里有123个黑客必备的Python工具!


下一篇:centos7.8 安装部署 k8s 集群