2020-04-29 21:51:12 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
## Load the config file
|
|
|
|
source "/etc/libvirt/hooks/kvm.conf"
|
|
|
|
|
|
|
|
## Load vfio
|
|
|
|
modprobe vfio
|
|
|
|
modprobe vfio_iommu_type1
|
|
|
|
modprobe vfio_pci
|
|
|
|
|
|
|
|
## Unbind gpu from nvidia and bind to vfio
|
|
|
|
virsh nodedev-detach $VIRSH_GPU_VIDEO
|
|
|
|
virsh nodedev-detach $VIRSH_GPU_AUDIO
|
2020-05-19 13:49:30 +01:00
|
|
|
virsh nodedev-detach $VIRSH_GPU_USB
|
|
|
|
virsh nodedev-detach $VIRSH_GPU_SSD
|