proxmox:gpu_passthrough
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
proxmox:gpu_passthrough [2021/06/07 10:12] – peter | proxmox:gpu_passthrough [2023/06/18 18:02] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Proxmox - GPU Passthrough ====== | ====== Proxmox - GPU Passthrough ====== | ||
- | PCI passthrough allows you to use a physical PCI device (graphics card, network card) inside a VM (KVM virtualization only). | + | **PCI passthrough** allows you to use a physical PCI device (graphics card, network card) inside a VM (KVM virtualization only). |
If you "PCI passthrough" | If you "PCI passthrough" | ||
Line 9: | Line 9: | ||
---- | ---- | ||
- | ===== Update Grub ===== | + | There are multiple steps needed. Do these in the following order. |
- | SSH directly into the Proxmox server. | + | |
- | + | * [[Proxmox:GPU Passthrough: | |
- | Edit / | + | |
- | + | ||
- | Change: | + | |
- | + | ||
- | <file bash / | + | |
- | GRUB_CMDLINE_LINUX_DEFAULT=" | + | |
- | </ | + | |
- | + | ||
- | ==== For an Intel CPU ==== | + | |
- | + | ||
- | <file bash / | + | |
- | GRUB_CMDLINE_LINUX_DEFAULT=" | + | |
- | </ | + | |
- | + | ||
- | ==== For an AMD CPU ==== | + | |
- | + | ||
- | + | ||
- | <file bash / | + | |
- | GRUB_CMDLINE_LINUX_DEFAULT=" | + | |
- | </ | + | |
- | + | ||
- | <WRAP info> | + | |
- | **NOTE: | + | |
- | + | ||
- | For example: | + | |
- | + | ||
- | < | + | |
- | GRUB_CMDLINE_LINUX_DEFAULT=" | + | |
- | </ | + | |
- | + | ||
- | * Disabling the Framebuffer: | + | |
- | | + | |
- | </ | + | |
---- | ---- | ||
- | When you finished editing / | + | ===== References ===== |
- | <code bash> | + | https:// |
- | update-grub | + | |
- | </code> | + | |
- | ---- | + | https:// |
- | ===== VFIO Modules ===== | + | https:// |
- | Add a few VFIO modules to your Proxmox system. | ||
- | Add the following to the / | ||
- | |||
- | <file bash / | ||
- | vfio | ||
- | vfio_iommu_type1 | ||
- | vfio_pci | ||
- | vfio_virqfd | ||
- | </ | ||
- | |||
- | Save and exit. | ||
- | |||
- | ---- | ||
- | |||
- | ===== IOMMU interrupt remapping ===== | ||
- | |||
- | Run the following commands: | ||
- | |||
- | <code bash> | ||
- | echo " | ||
- | echo " | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Blacklist Drivers ===== | ||
- | |||
- | To prevent the Proxmox host system utilizing the GPU(s), some drivers need to be blacklisted. | ||
- | |||
- | <code bash> | ||
- | echo " | ||
- | echo " | ||
- | echo " | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Adding GPU to VFIO ===== | ||
- | |||
- | ==== Determine the GPU ==== | ||
- | |||
- | <code bash> | ||
- | lspci -v | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | 01:00.0 VGA compatible controller: NVIDIA Corporation GP104 [GeForce GTX 1070] (rev a1) (prog-if 00 [VGA controller]) | ||
- | 01:00.1 Audio device: NVIDIA Corporation GP104 High Definition Audio Controller (rev a1) | ||
- | </ | ||
- | |||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | |||
- | Make note of the first set of numbers (e.g. 01:00.0 and 01:00.1). | ||
- | |||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ==== Determine the GPU Vendor IDs ==== | ||
- | |||
- | Run the command below. | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | </ | ||
- | |||
- | |||
- | <code bash> | ||
- | lspci -n -s 01:00 | ||
- | </ | ||
- | |||
- | returns: | ||
- | |||
- | <code bash> | ||
- | 01:00.0 0000: 10de:1b81 (rev a1) | ||
- | 01:00.1 0000: 10de:10f0 (rev a1) | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | |||
- | Make a note of the vendor id codes: 10de:1b81 and 10de:10f0. | ||
- | |||
- | </ | ||
- | |||
- | ---- | ||
- | | ||
- | ==== Add the GPU Vendor IDs to the VFIO ==== | ||
- | |||
- | <code bash> | ||
- | echo " | ||
- | |||
- | ---- | ||
- | |||
- | Update | ||
- | |||
- | <code bash> | ||
- | update-initramfs -u | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ==== Restart ==== | ||
- | |||
- | <code bash> | ||
- | sudo reboot | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | |||
- | ===== References ===== | ||
- | |||
- | https:// |
proxmox/gpu_passthrough.1623060764.txt.gz · Last modified: 2021/06/07 10:12 by peter