# lspci -vv -nn -s 00:02.0 00:02.0 VGA compatible controller [0300]: Intel Corporation Haswell Integrated Graphics Controller [8086:0412] (rev 06) (prog-if 00 [VGA controller]) Subsystem: Micro-Star International Co., Ltd. Device [1462:7816] Control: I/O+ Mem+ BusMaster+ S...
-v: 显示更详细的设备信息,包括设备的IRQ、I/O端口等。-nn: 显示设备的厂商和设备ID。-k: 显示设备对应的内核模块(驱动程序)信息。-s: 仅显示指定PCI插槽的设备信息。通过`lspci`命令,用户能快速掌握系统中的PCI设备状况,有助于识别设备、查找驱动程序以及进行系统调试和故障排除。以下是一些具体...
-b Bus-centric view (addresses and IRQ's as seen by the bus) -D Always show domain numbers Resolving of device ID's to names: -n Show numeric ID's -nn Show both textual and numeric ID's (names & numbers) -q Query the PCI ID database for unknown ID's via DNS -qq As above,...
-s:仅显示指定总线、插槽上的设备和设备上的功能块信息;-i:指定PCI编号列表文件,而不使用默认的文件;-m:以机器可读方式显示PCI设备信息。
如果你想从总线的角度查看设备,可以使用"-b" 参数,它会提供一个以总线为中心的视图。此外,如果你只想查看特定总线插槽的设备或功能块,"-s" 参数会派上用场。对于批量操作,你还可以指定一个包含PCI编号的文件,使用"-i" 参数来调用,而不是默认的文件列表。最后,如果你需要机器可读的输出格式...
Lspci -s -s [[[<domain>]:]<bus>]:][<device>][.[<func>]] Show only devices in the specified domain (in case your machine has several host bridges, they can either share a common bus number space or each of them can address a PCI domain of its own...
lspci没有标明域,但对于一台PC而言,一般只有一个域,即0号域。通过这个输出我们可以看到它是一个IDE interface。由上述的 输出可以看到,我的电脑上共有3个PCI总线(0号,1号,2号)。在单个系统上,插入多个总线是通过桥(bridge)来完成的,桥是一种用来连接总线 的特殊PCI外设。所以,PCI系统的整体布局组织为树型,...
-S 使用PCI 系统调用访问。(只能用于 Alpha 和 Ultra-Sparc 上的 Linux) -F <file> 从所给的包含lspci -x命令输出的文件中获取相关信息。这在分析用户提交的错误报告时很有用,因为你可以用任何方式来显示硬件配置信息而无需为了获取更多信息打扰用户。(可用于所有系统) ...
When I try to run startx.py inside the docker environment, it tells me that there's no lspci command: Traceback (most recent call last): File "alfred/scripts/startx.py", line 97, in <module> startx(display) File "alfred/scripts/startx.py", line 72, in startx for r in pci_rec...