lspci

List PCI devices and their details.

What it does

lspci displays information about PCI buses and devices such as graphics cards, network adapters, and controllers.

Quick Start

# List PCI devices
lspci

# Show detailed info
lspci -v

Examples

# Show kernel driver in use
lspci -k

# Filter for network devices
lspci | grep -i ethernet

# Show numeric IDs
lspci -nn

Notes