查看Linux硬件信息的方法

发布时间:2020-01-22编辑:脚本学堂
本文介绍下,linux下查看硬件信息的命令与方法,包括主板序列号、cpu信息、内存信息、硬盘信息、网卡信息等。有需要的朋友参考下吧。

1,主板信息.查看主板的序列号  
 

#使用命令
dmidecode | grep -i 'serial number'
#查看板卡信息
cat /proc/pci 

2,cpu信息
 

#通过/proc文件系统
1) cat /proc/cpuinfo
#通过查看开机信息
2) dmesg | grep -i 'cpu'
#
3)dmidecode -t processor

3,硬盘信息
 

#查看分区情况
fdisk -l
#查看大小情况
df -h
#查看使用情况
du -h
#
hdparm -I /dev/sda
#
dmesg | grep sda

4,内存信息
 

1) cat /proc/meminfo
2) dmesg | grep mem
3) free -m
4) vmstat
5) dmidecode | grep -i mem

5,网卡信息
 

1) dmesg | grep -i 'eth'
2) cat /etc/sysconfig/hwconf | grep -i eth
3) lspci | grep -i 'eth'

6,鼠标键盘和USB信息
 

查看键盘和鼠标:cat /proc/bus/input/devices
查看USB设备:cat /proc/bus/usb/devices
查看各设备的中断请求(IRQ):cat /proc/interrupts

7,显卡信息
 

1)lspci |grep -i 'VGA'
2)dmesg | grep -i 'VGA'

8,声卡信息

1)lspci |grep -i 'VGA'
2)dmesg | grep -i 'VGA'

9,其他命令

.用硬件检测程序kuduz探测新硬件:service kudzu start ( or restart)
.dmesg (查看所有启动时检测到的硬件信息)
.lspci (显示外设信息,如usb,网卡等信息)
.cat /etc/sysconfig/hwconf
.mpstat

10,需要手动安装的工具

lshw,hwinfo,hal-device-manager

您可能感兴趣的文章:
查看linux系统版本信息、磁盘信息、硬件信息的方法
linux下查看硬件信息(CPU、内存、硬盘、主板等信息)
centos中查看服务器硬件信息的命令参考
Linux查看CPU、机器型号等硬件信息的方法详解
linux系统硬件配置的查看方法
LINUX查看硬件配置信息的命令大全
Linux下查看硬件信息(CPU、内存、机器型号、网卡等)
Linux下查看硬件信息的几个命令
查看linux中CPU、机器型号等硬件信息的方法
查看Linux 硬件配置信息的方法总结
UNIX查看硬件信息的一些方法