Linux 查看内存品牌和速率

dmidecode

dmidecode 工具。DMI 表示的是 Desktop Management Interface 桌面管理接口,使用 dmidecode 工具可以查询很多 DMI 表的信息,包括内存,主板等。

安装

CentOS 7 安装 dmidecode

yum install -y dmidecode

Ubuntu 14.04 安装 dmidecode

sudo apt-get install -y dmidecode

使用

1.查看内存槽及内存条:

$ sudo dmidecode -t memory

2.查看内存的插槽数,已经使用多少插槽.每条内存多大:

$ sudo dmidecode -t memory | grep Size

3.查看服务器型号、序列号:

$ sudo dmidecode | grep "System Information" -A9 | egrep "Manufacturer|Product|Serial"

Was this article helpful?

Related Articles