Skip to content Skip to main navigation Skip to footer

CentOS/RHEL:如何查看主板型号以及硬件信息


在centos系统下我们如何来查看主板的型号以及其它的硬件信息呢,比如硬盘,内存,网卡等
。本来将会讲述如何使用常用的一些linux工具来检测硬件的信息。
安装包命令查找:

yum whatprovides */lspci
 

查看主板型号:

dmidecode |grep -A16 "System Information$"
 

内存槽及内存条:

dmidecode |grep -A16 "Memory Device$"
 

硬盘:

fdisk -l
 
smartctl -a /dev/sda
HP SmartArray (cciss) hardware RAID controllers:
 
smartctl -d cciss,0 -a /dev/cciss/c0d0
 

网卡:

mii-tool
 

scsi/raid卡:

lspci
 

centos相关命令安装:

yum -y install smartmontools
yum install pciutils -y
 
0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.