Renamed linux to Linux.

This commit is contained in:
Derek McTavish
2026-03-26 06:56:18 +00:00
committed by www-data
parent d381b28a71
commit a974228bf3
2 changed files with 0 additions and 0 deletions

28
Linux/gpu passthrough.md Normal file
View File

@@ -0,0 +1,28 @@
# GPU Passthrough on Linux
## Enable IOMMU
```bash
sudo vim /etc/default/grub
```
Add amd_iommu=on iommu=pt
`GRUB_CMDLINE_LINUX_DEFAULT="... amd_iommu=on iommu=pt"`
```bash
sudo grub-mkconfig -o /boot/grub/grub.cfg
sudo reboot
```
Verify
```bash
sudo dmesg | grep -i iommu
```
## Find GPU IDs
```bash
lspci -nn | grep -E "VGA|Audio"
```