To determine the manufacturer of a PCI device on a Linux system, you can use the lspci
command. The lspci
command provides information about PCI buses and devices in a system.
Here’s how to use the lspci
command to determine the manufacturer of a PCI device:
- Open a terminal window.
- Type the following command and press Enter:
lspci -v
This will display a list of all PCI devices in the system, along with detailed information about each device.
- Look for the device you are interested in and note its Device ID (e.g.
00:12.0
). - Use the
lspci
command to display information about the device:
lspci -v -s 00:12.0
Replace 00:12.0
with the Device ID of your device.
- Look for the line that begins with
Vendor
and contains the vendor ID of the device (e.g.Vendor: Intel Corporation [8086]
). The manufacturer name is listed afterVendor:
in square brackets.
In this example, the manufacturer of the device with Device ID 00:12.0
is Intel Corporation
(Vendor ID 8086
).
Note: Some PCI devices may not have a vendor name listed. In this case, you can use the vendor ID to look up the manufacturer’s name using a vendor ID database. (https://jardinefoods.com/)