Linux 通过软件命令提示符查找内存速度
如何通过 Linux 操作系统下的命令提示符选项查找或识别内存 (DIMM) 的速度?如何使用 shell 提示符查找 DIMM 的速度?
您可以在任何 Linux 发行版下使用 dmidecode 或 lshw 命令查看速度。
安装 lshw
如果你使用的是 Debian / Ubuntu Linux,请输入:
# apt-get install lshw
如果你是 RHEL / Fedora / Red Hat / CentOS Linux,请在启用 EPEL repo 后输入以下内容:
# 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]
了解如何使用 dmidecode 找出Linux 下的 RAM 速度和类型。