Linux命令检测显示卡芯片组

时间:2020-01-09 14:16:16  来源:igfitidea点击:

如何在Linux操作系统下检测并shpw所有芯片组列表?
Linux下如何查看显示卡芯片组?

芯片组是指一组旨在一起工作的集成电路。
您需要使用" lspci命令"来显示检测到的pci设备,例如RAID卡,显示卡等。
语法为:

lspci
lspci | less
lspci -vv | less
lspci | grep -i --color vga
lspci -v | grep -i --color vga

输出示例:

01:00.0 VGA compatible controller: NVIDIA Corporation G92 [Quadro FX 3800M] (rev a2) (prog-if 00 [VGA controller])

您还可以如下使用lshw命令:

lshw
lshw | less
lshw -businfo

输出示例:

Bus info          Device  Class       Description
=================================================
                          system      Computer
                          bus         Motherboard
                          memory      7930MiB System memory
cpu@0                     processor   Intel(R) Core(TM) i7 CPU       Q 820  @ 1.73GHz
pci@0000:00:00.0          bridge      Core Processor DMI
pci@0000:00:03.0          bridge      Core Processor PCI Express Root Port 1
pci@0000:01:00.0          display     G92 [Quadro FX 3800M]
pci@0000:00:08.0          generic     Core Processor System Management Registers
pci@0000:00:08.1          generic     Core Processor Semaphore and Scratchpad Registers
pci@0000:00:08.2          generic     Core Processor System Control and Status Registers
pci@0000:00:08.3          generic     Core Processor Miscellaneous Registers
pci@0000:00:10.0          generic     Core Processor QPI Link
pci@0000:00:10.1          generic     Core Processor QPI Routing and Protocol Registers
pci@0000:00:1a.0          bus         5 Series/3400 Series Chipset USB2 Enhanced Host Controller
pci@0000:3f:04.1          bridge      Core Processor Integrated Memory Controller Channel 0 Address Registers
pci@0000:3f:04.2          bridge      Core Processor Integrated Memory Controller Channel 0 Rank Registers
pci@0000:3f:04.3          bridge      Core Processor Integrated Memory Controller Channel 0 Thermal Control Registers
pci@0000:3f:05.0          bridge      Core Processor Integrated Memory Controller Channel 1 Control Registers
pci@0000:3f:05.1          bridge      Core Processor Integrated Memory Controller Channel 1 Address Registers
pci@0000:3f:05.2          bridge      Core Processor Integrated Memory Controller Channel 1 Rank Registers
pci@0000:3f:05.3          bridge      Core Processor Integrated Memory Controller Channel 1 Thermal Control Register

最后,dmidecode命令还可以提供有关系统的信息:

dmidecode 
dmidecode | less