Last active
March 12, 2025 02:59
-
-
Save RobinBeismann/c425ad811dbb994d3d1c65feaf768a56 to your computer and use it in GitHub Desktop.
Proxmox iGPU Passthrough (11th Gen)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/modprobe.d/blacklist-i915.conf | |
blacklist i915 | |
install i915 /usr/bin/false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update-grub && update-initramfs -u -k all | |
# If using Proxmox Dist: | |
proxmox-boot-tool refresh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/default/grub | |
# Only add this line | |
GRUB_CMDLINE_LINUX_DEFAULT="quiet intel_iommu=on initcall_blacklist=sysfb_init intel_pstate=disable i915.enable_gvt=1 iommu=pt pcie_acs_override=downstream,multifunction video=efifb:off video=vesa:off vfio_iommu_type1.allow_unsafe_interrupts=1 kvm.ignore_msrs=1 modprobe.blacklist=radeon,nouveau,nvidia,nvidiafb,nvidia-gpu" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/modules: kernel modules to load at boot time. | |
# | |
# This file contains the names of kernel modules that should be loaded | |
# at boot time, one per line. Lines beginning with "#" are ignored. | |
vfio | |
vfio_iommu_type1 | |
vfio_pci | |
vfio_virqfd | |
kvmgt | |
xengt | |
vfio-mdev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PCI Passthrough: https://screenshot.nightwire.de/f/zcrdyxwvhji.png | |
In-depth: https://screenshot.nightwire.de/f/uindpechgsv.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment