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:25] – peter | proxmox:gpu_passthrough [2023/06/18 18:02] (current) – peter | ||
---|---|---|---|
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 the line: | + | |
- | + | ||
- | <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 editing is finished run this command: | + | ===== References ===== |
- | <code bash> | + | https://pve.proxmox.com/wiki/PCI(e)_Passthrough |
- | update-grub | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== VFIO Modules ===== | + | |
- | + | ||
- | Add a few VFIO (Virtual Function I/O) modules to your Proxmox system. | + | |
- | + | ||
- | Add the following to the / | + | |
- | + | ||
- | <file bash /etc/modules> | + | |
- | 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 | + | |
- | + | ||
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== 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: | + | |
- | + | ||
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== 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: | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== Configuring the VM ===== | + | |
- | + | ||
- | ==== Edit the VM Config File ==== | + | |
- | + | ||
- | Edit **/ | + | |
- | + | ||
- | Add these lines. | + | |
- | + | ||
- | <file bash> | + | |
- | machine: q35 | + | |
- | cpu: host, | + | |
- | args: -cpu ' | + | |
- | </ | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ==== Add PCI Devices (Your GPU) to VM ==== | + | |
- | + | ||
- | Select the VM. | + | |
- | + | ||
- | Under the Hardware Tab, click on the **Add** button towards the top. | + | |
- | + | ||
- | Then under the drop-down menu, click **PCI Device**. | + | |
- | + | ||
- | Look for the GPU in the list, and select it. | + | |
- | + | ||
- | On the PCI options screen, you should only need to configure it like so: | + | |
- | + | ||
- | * All Functions: **Checked**. | + | |
- | * Rom-Bar: **Checked**. | + | |
- | * Primary GPU: **Not Checked**. | + | |
- | * PCI-Express: | + | |
- | + | ||
- | ---- | + | |
- | + | ||
- | ===== References ===== | + | |
https:// | https:// | ||
https:// | https:// | ||
+ | |||
proxmox/gpu_passthrough.1623061555.txt.gz · Last modified: 2021/06/07 10:25 by peter