【lspci】在 Linux 上使用 lspci 命令查看硬件情
2023-07-09 本文已影响0人
Bogon
PCI是Peripheral Component Interconnect(外设部件互连标准)的缩写,它是个人电脑中使用最为广泛的接口,几乎所有的主板产品上都带有这种插槽。
PCI插槽也是主板带有最多数量的插槽类型,在流行的台式机主板上,ATX结构的主板一般带有5~6个PCI插槽,而小一点的MATX主板也都带有2~3个PCI插槽,可见其应用的广泛性。
基于PCI总线的平台如图所示:
image.png
当你在个人电脑或服务器上运行 Linux 时,有时需要识别该系统中的硬件。
lspci 命令用于显示连接到 PCI 总线的所有设备,从而满足上述需求。
该命令由 pciutils 包提供,可用于各种基于 Linux 和 BSD 的操作系统。
# yum info pciutils
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
Installed Packages
Name : pciutils
Arch : x86_64
Version : 3.5.1
Release : 3.el7
Size : 196 k
Repo : installed
From repo : anaconda
Summary : PCI bus related utilities
URL : http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml
License : GPLv2+
Description : The pciutils package contains various utilities for inspecting and
: setting devices connected to the PCI bus. The utilities provided
: require kernel version 2.1.82 or newer (which support the
: /proc/bus/pci interface).
参考
lspci
http://linux.51yip.com/search/lspci
在 Linux 上使用 lspci 命令查看硬件情况
https://zhuanlan.zhihu.com/p/411250227