Howdy, folks.
I'm relatively new to Proxmox but not Debian. I'm working on doing a passthru of my Intel UHD Graphics adapter to a VM and I cannot seem to get the 'i915' driver blacklisted from the host.
Here's what I have so far. Yes, there's some redundancy of the 'blacklist' statement. I've been trying multiple places in the filesystem and it's just not working regardless.
* /etc/modprod.d/intel-uhd-passthru.conf
* /etc/modprobe.d/pve-blacklist.conf
And then update the initrd:
Check that the i915 module has been blacklisted from the host and thus is available for the guest to use:
Output:
Much appreciated.
I'm relatively new to Proxmox but not Debian. I'm working on doing a passthru of my Intel UHD Graphics adapter to a VM and I cannot seem to get the 'i915' driver blacklisted from the host.
Here's what I have so far. Yes, there's some redundancy of the 'blacklist' statement. I've been trying multiple places in the filesystem and it's just not working regardless.
* /etc/modprod.d/intel-uhd-passthru.conf
# driver for embedded Intel UDH Graphics
blacklist i915
* /etc/modprobe.d/pve-blacklist.conf
# This file contains a list of modules which are not supported by Proxmox VE
# nidiafb see bugreport https://bugzilla.proxmox.com/show_bug.cgi?id=701
blacklist nvidiafb
# prevent host from grabbing Intel UHD Graphics
blacklist i915
And then update the initrd:
update-initramfs -u -k all && reboot
Check that the i915 module has been blacklisted from the host and thus is available for the guest to use:
lsmod | grep i915
Output:
i915 2990080 2
ttm 81920 1 i915
drm_kms_helper 303104 1 i915
cec 61440 2 drm_kms_helper,i915
drm 598016 4 drm_kms_helper,i915,ttm
i2c_algo_bit 16384 2 igb,i915
video 53248 1 i915
Much appreciated.