私のモボが取る最大RAMを照会することは可能ですか?


18

ターミナルを介して、マザーボードがどれだけのRAMを使用できるかを照会できますか?

私もアップグレードできるかどうかを探しています。


1
私は、すべての構成の空のメモリスロットを埋めるのは、いくつかのRAMのメーカー多分サポート/優先など動作していないとして、マザーボードのマニュアルを表示することをお勧めreverendj1の答えに追加
数学

いい視点ね。幸いなことに、私の場合は正確でした!
chrisjlee

回答:


25

以下のコマンドで簡単に見つけることができます:

sudo dmidecode -t 16

このコマンドは、各スロットにすでにある量を教えてくれます:

sudo dmidecode -t 17

3
検査することも-t 2できます。これにより、モデル番号など、マザーボードに関する情報が提供されます。このモデル番号は、ドキュメントにつながる可能性があります。
チャールズ

2
そして、1つのライナーで:sudo dmidecode -t16,17
Insperatus

1
sudo dmidecode -t memoryは同等であり、無関係と見なされる可能性のあるhandletype、およびsize情報を除外します
-Insperatus

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容量を表示する方法はありますか?
ウォルディルレオンシオ

すみません、わかりません。
ユーザー不明
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.