2021-09-10 16:08:16 +02:00
|
|
|
= Virtio Notes
|
2021-07-26 10:39:47 +02:00
|
|
|
|
|
|
|
We have found that virtio is faster/more stable than emulating other
|
|
|
|
cards on our VMs.
|
|
|
|
|
|
|
|
To switch a VM to virtio:
|
|
|
|
|
|
|
|
* Remove from DNS if it's a proxy
|
|
|
|
* Log into the vm and shut it down
|
2021-09-10 16:08:16 +02:00
|
|
|
* Log into the virthost that the VM is on, and
|
|
|
|
`sudo virsh edit <VM FQDN>`
|
2021-07-26 10:39:47 +02:00
|
|
|
* Add this line to the appropriate bridge interface(s):
|
|
|
|
+
|
|
|
|
....
|
|
|
|
<model type='virtio'/>
|
|
|
|
....
|
|
|
|
* Save/quit the editor
|
2021-09-10 16:08:16 +02:00
|
|
|
* `sudo virsh start <VM FQDN>`
|
2021-07-26 10:39:47 +02:00
|
|
|
* Re-add to DNS if it's a proxy
|