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
Since macOS 10.14 and 10.15 does support virtio block, it is better to replace sata driver in the xml config with virtio.
<disk type='file' device='disk'> <driver name='qemu' type='qcow2' cache='writeback'/> <source file='/mnt/user/domains/MacinaboxCatalina/Clover.qcow2'/> <target dev='hdc' bus='sata'/> <boot order='1'/> <address type='drive' controller='0' bus='0' target='0' unit='2'/> </disk>
to
<disk type='file' device='disk'> <driver name='qemu' type='qcow2' cache='writeback'/> <source file='/mnt/user/domains/MacinaboxCatalina/Clover.qcow2'/> <target dev='hdc' bus='virtio'/> <boot order='1'/> <address type='drive' controller='0' bus='0' target='0' unit='2'/> </disk>
The text was updated successfully, but these errors were encountered:
Does catalina support virtio ?
Sorry, something went wrong.
Yes, that’s what I’m trying to say. Try by yourself
No branches or pull requests
Since macOS 10.14 and 10.15 does support virtio block, it is better to replace sata driver in the xml config with virtio.
to
The text was updated successfully, but these errors were encountered: