1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-15 08:15:53 +02:00
tldr/pages/linux/lspci.md
2025-08-08 19:43:03 +03:00

28 lines
461 B
Markdown

# lspci
> List all PCI devices.
> More information: <https://manned.org/lspci>.
- Show a brief list of devices:
`lspci`
- Display additional information (Note: the `-v` flag can be repeated to increase verbosity):
`lspci -v`
- Display drivers and modules handling each device:
`lspci -k`
- Show a specific device:
`lspci -s {{00:18.3}}`
- Dump info in a readable form:
`lspci -vm`
- Show PCI vendor and device codes alongside its name:
`lspci -nn`