我想为我的笔记本电脑购买一个 RAM 模块。我使用了命令sudo lshw -short -C memory
,得到了这个信息。除了类型之外,我对我的 RAM 了如指掌。我可以看到4GIB SODIMM Synchronous 2133 MHz
,但我不知道我需要哪一个 -DDR3
或者DDR4
?
来自 Google 研究的信息:DDR3 规格起始于 800 MT/s(即每秒数百万次传输),有些甚至高达 2133。而 DDR4 起始于 2133 MHz。
答案1
当你执行时sudo lshw -class memory
,你会收到类似这样的信息:
`*-memory
description: System Memory
physical id: 18
slot: System board or motherboard
size: 16GiB
*-bank:0
description: DIMM DDR3 Synchronous 1600 MHz (0,6 ns)
product: CT102464BF160B.C16
vendor: Conexant (Rockwell)
physical id: 0
serial: 118048000000
slot: ChannelA-DIMM0
size: 8GiB
width: 8 bits
clock: 1600MHz (0.6ns)
*-bank:1
description: DIMM [empty]
product: [Empty]
vendor: [Empty]
physical id: 1
serial: [Empty]
slot: ChannelA-DIMM1
*-bank:2
description: DIMM DDR3 Synchronous 1600 MHz (0,6 ns)
product: CT102464BF160B.C16
vendor: Conexant (Rockwell)
physical id: 2
serial: 082048000000
slot: ChannelB-DIMM0
size: 8GiB
width: 8 bits
clock: 1600MHz (0.6ns)
*-bank:3
description: DIMM [empty]
product: [Empty]
vendor: [Empty]
physical id: 3
serial: [Empty]
slot: ChannelB-DIMM1
在我的计算机上的这个示例中,您可以看到模块是 DIMM DDR3 RAM。当命令出于某种原因没有提供足够的信息时,另一种选择是在 BIOS 或模块本身上查找。在此处了解有关 DDR3 和 DDR4 RAM 的更多信息 ->
答案2
使用:
sudo dmidecode -t memory
代替:
sudo lshw -class memory
第一个命令最终返回了 RAM 的类型。第二个命令也运行正常,但在我的例子中没有关于类型的信息。
答案3
去http://www.crucial.com并输入您的品牌和型号,它会告诉您您拥有/需要什么类型的 RAM。