In Linux, is there a way to find out which PCI card is plugged into which PCI slot?
/sys/bus/pci/devices/ contains many devices (bridges, CPU channels, etc.) that are not cards and I was not able to find any information about slot-card mappings in the device directories.
Method 3: Displaying Open PCI Slots Back at the terminal, you can run sudo dmidecode -t 9 | grep -A3 “System Slot Information” | grep -c -B1 “Available” to find out just how many PCI slots you have that are empty.
Download and install CPU-Z. Once installed, open it and head to the 'Mainboard' tab. Under the “Graphic Interface” tab, you'll see what type of PCIe connection you have, along with its link width. Look for 'x16' in 'Link Width' and 'PCI-Express 3.0' under 'Version'.
You can also access the Device Manager by pressing "Windows-X" and selecting "Device Manager" from the menu. You can also visually identify the connected PCI cards in a computer by opening the casing and examining devices connected to the computer's PCI buses.
lspci stands for list pci. Think of this command as “ls” + “pci”. This will display information about all the PCI bus in your server. Apart from displaying information about the bus, it will also display information about all the hardware devices that are connected to your PCI and PCIe bus.
You can use
dmidecode –t slot
to find all available pci slots than you can run
lspci -s <slot number>
command to list device connected to specified slot. You must take bus address from first command and use this address as parameter in second command.
Nebojsa's answer is good, but here's a little more information and an answer to magmabyte's comment.
dmidecode
gives you the number of slots, however, those slots are not the only things using the PCI bridge which is why you see many more devices than slots.
Secondly, you may see multiple "devices" per slot, but they are likely just multiple ports on the same card. To give you an example using network interface cards (NICs):
megaman@someserver $ lspci | grep 10Gb 07:00.0 Ethernet controller: Emulex Corporation OneConnect 10Gb NIC (rev 02) 07:00.1 Ethernet controller: Emulex Corporation OneConnect 10Gb NIC (rev 02)
dmidecode
indicates that this server has three slots (and it does). Slot 1 has the 10Gb NIC above (you can see that it has 2 ports), slot 2 has a fibre channel card (which also happens to have 2 ports), and finally slot 3 is empty.
There are three physical slots in the server, one is empty, two are filled with multi port cards (an HBA and a NIC).
To answer your question in the comment, the 3 slots you have are the ones indicated by dmidecode
and they are likely populated with multi port interface cards.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With