Skip to content

Instantly share code, notes, and snippets.

@paul-vd
Last active March 18, 2025 09:39
Show Gist options
  • Save paul-vd/5328d8eb2c626dff36ee143da2e85179 to your computer and use it in GitHub Desktop.
Save paul-vd/5328d8eb2c626dff36ee143da2e85179 to your computer and use it in GitHub Desktop.
GPU Passthrough Fedora

Simular Guides

Usefull Commands

  • lspci -nnk list pci devices
  • sudo grub2-mkconfig -o /etc/grub2-efi.cfg updates the grub
  • sudo call-a-friend @ballas calls the best knowledge base, fuck wiki 🤣

Detach the GPU from the host


Retrieve the GPU id's

First you will have to find the GPU id's that you would like to passthrough, you can do this by running in the terminal:

# For AMD GPU's:
$ lspci -nnk | grep Navi

# For nvidia GPU's:
$ lspci -nnk | grep NVIDIA 

Example output, here we are interested in the VGA compatible controller (1002:73bf) and the Audio device (1002:ab28)

0a:00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] Navi 10 XL Upstream Port of PCI Express Switch [1002:1478] (rev c1)
0b:00.0 PCI bridge [0604]: Advanced Micro Devices, Inc. [AMD/ATI] Navi 10 XL Downstream Port of PCI Express Switch [1002:1479]
0c:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Navi 21 [Radeon RX 6800/6800 XT / 6900 XT] [1002:73bf] (rev c1)
0c:00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Navi 21 HDMI Audio [Radeon RX 6800/6800 XT / 6900 XT] [1002:ab28]
	Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Navi 21 HDMI Audio [Radeon RX 6800/6800 XT / 6900 XT] [1002:ab28]

Blacklist id's and enable iommu

First you will have to modify the default grub file.

$ sudo gedit /etc/default/grub

We want to modify the GRUB_CMDLINE_LINUX

# for amd  gpu replace GPU_TYPE with `amdgpu`.
# for nvidia gpu replace GPU_TYPE with `nouveau`.
# if you have and intel replace `amd_iommu` with `intel_iommu`.
# `vfio-pci.ids` are equivalent to the id's found in the previous step.

# values to add
`amd_iommu=on`
`video=efifb:off` // disable gpu on boot
`kvm.ignore_msrs=1`
`rd.driver.pre=vfio-pci` // this preloads the vfio-pci

- GRUB_CMDLINE_LINUX="rhgb quiet"
+ GRUB_CMDLINE_LINUX="rhgb quiet rd.driver.blacklist=GPU_TYPE modprobe.blacklist=GPU_TYPE video=efifb:off amd_iommu=on rd.driver.pre=vfio-pci kvm.ignore_msrs=1 vfio-pci.ids=1002:73bf,1002:ab28"

Then we need to update grup

sudo grub2-mkconfig -o /etc/grub2-efi.cfg

We then need to edit the dracut config

$ sudo gedit /etc/dracut.conf.d/local.conf

add_drivers+=" vfio vfio_iommu_type1 vfio_pci vfio_virqfd "

$ sudo dracut -f --kver $(uname -r)

Rebooot!

Attach the GPU from the guest


Install Virtual Machine

$ sudo dnf groupinstall virtualization

Then you reboot 🦸

  1. Open up Virtual Machine Manager
  2. Create new virtual machine
  3. Local install media (ISO image or CDROM) -> Select the ISO to windows10 or windows11
  4. Assign Ram & CPU
  5. Tick the Customize configuration before install

If you are running windows 11 you will need a secure boot and tpm module.

  1. Under overview add the following config
Chipset: q35
Firmware: x86_64:/usr/share/edk2/ovmf/OVMF_CODE.secboot.fd
  1. Under CPUs, untick the copy host cpu configuration then for a example use the following config for a Ryzen 5900x
Model: host-passthrough
Topology
[X] Manually set CPU topology
Sockets: 1
Cores: 6
Threads: 2
  1. Add a TPM module by clicking on Add Hardware > TPM
Model: TIS
Backend: Emulated device
Version: 2.0
  1. Then passthrough the GPU and if needed the GPU Audio under the Add Hardware > PCI HOST Device image

And then you can begin installation. Bobs your uncle 🤠

@Myrdincx
Copy link

Myrdincx commented Sep 2, 2024

I've tried to follow this guide, but whenever I'm trying to boot I'm getting the following thing:
VFIO - User Level meta-driver version 0.3 and it's refraining me from actually booting.
Does anyone know how to fix this issue?

@Danthebee1
Copy link

When I was trying to fix the " dracut-install: Failed to find module 'vfio_virqfd' " error I edited the config file and got this error when running the "sudo dracut -f --kver $(uname -r)" command I got this error:

Screenshot_20241122_193232

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment