Linux通过软件命令提示符找到内存速度

时间:2020-01-09 10:41:32  来源:igfitidea点击:

Linux如何查看内存条的速度?
如何在Linux操作系统下通过命令提示符选项找出或确定内存(DIMM)的速度?
如何使用shell提示找出DIMM的速度?
您可以在任何Linux发行版中使用dmidecode或lshw命令找出速度。

安装lshw

如果您使用的是Debian/Ubuntu Linux,请执行:

# apt-get install lshw

如果您是RHEL/Fedora/Red Hat/CentOS Linux,请在启用EPEL存储库后输入以下内容:

# yum install lshw

如何使用lshw显示DIMM速度?

执行命令,如下所示:

# lshw -short -C memory

输出:

H/W path              Device     Class      Description
=======================================================
/0/0                             memory     108KiB BIOS
/0/4/6                           memory     16KiB L1 cache
/0/4/7                           memory     8MiB L2 cache
/0/5/8                           memory     16KiB L1 cache
/0/5/9                           memory     8MiB L2 cache
/0/16                            memory     12GiB System Memory
/0/16/0                          memory     2GiB DIMM Synchronous 667 MHz (1.5 ns)
/0/16/1                          memory     2GiB DIMM Synchronous 667 MHz (1.5 ns)
/0/16/2                          memory     2GiB DIMM Synchronous 667 MHz (1.5 ns)
/0/16/3                          memory     2GiB DIMM Synchronous 667 MHz (1.5 ns)
/0/16/4                          memory     2GiB DIMM Synchronous 667 MHz (1.5 ns)
/0/16/5                          memory     DIMM Synchronous 667 MHz (1.5 ns) [empty]
/0/16/6                          memory     2GiB DIMM Synchronous 667 MHz (1.5 ns)
/0/16/7                          memory     DIMM Synchronous 667 MHz (1.5 ns) [empty]

了解如何在Linux下使用dmidecode找出RAM速度和类型。