how to find device path for PCIE card

hadrrik

New Member
Jul 24, 2024
2
0
1
Trying to add "Device Passthrough" via GUI using the add button in the container 100 but cant find the device path
1721861834293.png
1721861847765.png
this is the /dev folder contents, how to know what to select for the graphic card
1721862007795.png
 
I'm also in the same situation but looking for the device path of a Skyconnect :/
 
Unload (rmmod DRIVER_MODULE) or blacklist the actual Linux kernel driver for your device (look it up with lspci -k) and make a list of all files in /dev/ (find /dev >/tmp/before.txt). Load the driver (modprobe DRIVER_MODULE ) and make another list of all files in /dev/ (find /dev >/tmp/after.txt). Compare the two lists (diff /tmp/after.txt /tmp/before.txt) to find the dev-nodes created by that driver.