We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While creating a base image with vmcloak init, I got the following error from qemu: qemu-system-x86_64: -soundhw: invalid option
The argument -soundhw was deprecated since version 5.1 and seemed to be removed recently.
To fix it I replaced "-soundhw", "hda", in line 61 and 85 of vmcloak.dependencies.qemu with: "-device", "intel-hda", "-device", "hda-duplex",
This was recommended on this site: https://qemu.readthedocs.io/en/stable-6.1/about/deprecated.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While creating a base image with vmcloak init, I got the following error from qemu:
qemu-system-x86_64: -soundhw: invalid option
The argument -soundhw was deprecated since version 5.1 and seemed to be removed recently.
To fix it I replaced
"-soundhw", "hda",
in line 61 and 85 of vmcloak.dependencies.qemu with:
"-device", "intel-hda",
"-device", "hda-duplex",
This was recommended on this site:
https://qemu.readthedocs.io/en/stable-6.1/about/deprecated.html
The text was updated successfully, but these errors were encountered: