是否可以查询主板的最大内存?


18

是否可以通过终端查询我的主板能承受多少内存?

我在看我是否还能升级。


1
附加reverendj1的答案,我建议查看主板说明书,不填充空RAM插槽的所有配置的可能工作和一些RAM制造商可能支持/首选等
数学

好点子。幸运的是,在我看来,它是准确的!
chrisjlee 2012年

Answers:


25

您可以使用以下命令轻松找到它:

sudo dmidecode -t 16

此命令将告诉您每个插槽中已有多少:

sudo dmidecode -t 17

3
您可能还需要检查-t 2,它可以提供有关主板的信息,包括型号。然后,该型号可能会导致文档编制,这可能对您有所帮助。
查尔斯

2
而在一个班轮中:sudo dmidecode -t16,17
Insperatus

1
sudo dmidecode -t memory是等效的,并且不包括可能被视为无关的handletypesize信息
Insperatus 2013年

8

具有sudo -class内存的lshw(列出硬件):

sudo lshw -C memory
[sudo] password for stefan: 
  *-firmware              
       description: BIOS
       vendor: American Megatrends Inc.
       physical id: 0
       version: 0208 (01/31/2005)
       size: 64KiB
       capacity: 448KiB
       capabilities: isa pci pcmcia pnp apm upgrade shadowing escd cdboot bootselect socketedrom edd int13floppy1200 int13floppy720 int13floppy2880 int5printscreen int9keyboard int14serial int17printer int10video acpi usb agp ls120boot zipboot biosbootspecification netboot
  *-cache:0
       description: L1 cache
       physical id: 5
       slot: L1-Cache
       size: 32KiB
       capacity: 32KiB
       capabilities: pipeline-burst internal varies data
  *-cache:1
       description: L2 cache
       physical id: 6
       slot: L2-Cache
       size: 2MiB
       capacity: 2MiB
       capabilities: pipeline-burst internal varies unified
  *-memory
       description: System Memory
       physical id: 1b
       slot: System board or motherboard
       size: 1GiB
       capacity: 3GiB
     *-bank:0
          description: DIMM SDRAM Synchronous
          product: PartNum0
          vendor: Manufacturer0
          physical id: 0
          serial: SerNum0
          slot: DIMM0
          size: 512MiB
          width: 64 bits
     *-bank:1
          description: DIMM SDRAM Synchronous
          product: PartNum1
          vendor: Manufacturer1
          physical id: 1
          serial: SerNum1
          slot: DIMM1
          size: 512MiB
          width: 64 bits

那个部分:

   size: 1GiB
   capacity: 3GiB

是您要寻找的。我的系统有1GiB,但需要3。


有什么办法可以显示每个插槽的最大RAM容量?
Waldir Leoncio

对不起,我不知道。
用户未知
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.