确定 RAM 的类型

确定 RAM 的类型

我想要确定计算机具有哪种类型的 RAM(无论是 DDR2 还是 DDR3)。

我尝试了几个命令:

  • sudo lshw -short -C memory输出如下:

    H/W path        Device      Class       Description
    ===================================================
    /0/2                        memory      1980MiB System memory
    
  • sudo dmidecode -t memory输出如下:

    # dmidecode 2.12
    # No SMBIOS nor DMI entry point found, sorry.
    
  • sudo dmidecode | grep -A 15 Memory不输出任何内容。

  • 我也尝试在hardinfo“设备>内存”下查找,但找不到类型。

编辑:

  • sudo lshw -C memory仅输出以下内容:

    *-memory                
         description: System memory
         physical id: 2
         size: 1980MiB
    

答案1

sudo lshw -c memory不带选项即可使用-short

以下是示例输出:

$ sudo lshw -c memory
  *-memory
       description: System Memory
       physical id: c
       slot: System board or motherboard
       size: 12GiB
     *-bank:0
          description: SODIMM DDR3 Synchronous 1600 MHz (0,6 ns)
          product: ACR16D3LS1KNG/8G
          vendor: Kingston
          physical id: 0
          serial: 16392411
          slot: ChannelA-DIMM0
          size: 8GiB
          width: 64 bits
          clock: 1600MHz (0.6ns)
     [...shortened output...]
  *-memory UNCLAIMED
       [...shortened output...]

description您可以在每个存储库的字段中看到 RAM 类型,如下所示:

description: SODIMM DDR3 Synchronous 1600 MHz (0,6 ns)

相关内容