今天想要在Linux下查看机器上MCH(北桥)芯片,ICH(南桥)信息,在网上找方法。通过命令lspci | grep -i host\ bridge
查看北桥芯片只能看到属于哪个系列的,例如我的是
00:00.0 Host bridge: Intel Corporation 4 Series Chipset DRAM Controller (rev 03)
不能看到更具体信息。
在网上看到可以通过dmesg
看到,但没说具体方法。我也是通过dmesg查看到的,特此记录下来。顺便把查看PC其他硬件相关信息方法记录下。
lspci | grep -i host\ bridge
(只显示是那个系列的) 00:00.0 Host bridge: Intel Corporation 4 Series Chipset DRAM Controller (rev 03)
[ 2.679615] agpgart-intel 0000:00:00.0: Intel G41 Chipset
查看命令:lspci | grep -i interface
cat /proc/cpuinfo
lspci
可以查看到北桥、显卡(VGA)、声卡(Audio device)、PCI接口、USB接口及网卡(Ethenet)等
cat /proc/meminfo
cat /proc/interrupts
hdparm -i /dev/sda
df -l
cat /proc/devices
(在内核开发用于创建字符设备或块设备时有用)