如何找到我的 Netgear WG311v3 无线网络适配器的 pci.id?

如何找到我的 Netgear WG311v3 无线网络适配器的 pci.id?

我有一张较旧的 Netgear WG311v3 无线网络 pci 卡,我想找出它的 PCI.ID,以便尽可能启用它。我知道 Broadcom 的 PCI.ID 是 14e4,但不确定在哪里可以找到我的 netgear 硬件的这个 pci.id。

答案1

lspci -vnn | grep -a4 -i net

这将列出系统中的所有网络适配器及其 PCI ID。

它将输出类似这样的行:

00:19.0 Ethernet controller [0200]: Intel Corporation Ethernet Connection (2) I218-V [8086:15a1] (rev 05)

括号内的位[8086:15a1]是 PCI ID。

http://www.linuxforums.org/forum/mint-linux/176871-solved-cant-find-pci-id.html

相关内容