回答:
これはする必要があります:
sudo lshw -short -C memory
lshw
次のmemory
クラスでコマンドを使用します。
$ sudo lshw -C memory
# Some things about firmware and caches
*-memory
description: System Memory
physical id: 13
slot: System board or motherboard
size: 8GiB
*-bank:0
description: DIMM [empty]
product: [Empty]
vendor: [Empty]
physical id: 0
serial: [Empty]
slot: ChannelA-DIMM0
*-bank:1
description: SODIMM DDR3 Synchronous 1600 MHz (0.6 ns)
product: M471B5273DH0-CK0
vendor: Samsung
physical id: 1
serial: 34A8C7AF
slot: ChannelA-DIMM1
size: 4GiB
width: 64 bits
clock: 1600MHz (0.6ns)
# More banks.
ご覧のとおり、DDR3 1600MHz RAMを使用しています。
別のオプションはdmidecode
次のとおりです。
$ sudo dmidecode -t memory
# dmidecode 2.9
SMBIOS 2.5 present.
Handle 0x003B, DMI type 16, 15 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: Multi-bit ECC
Maximum Capacity: Unknown
Error Information Handle: Not Provided
Number Of Devices: 8
Handle 0x003D, DMI type 17, 27 bytes
Memory Device
Array Handle: 0x003B
Error Information Handle: Not Provided
Total Width: 72 bits
Data Width: 64 bits
Size: 4096 MB
Form Factor: DIMM
Set: None
Locator: DIMM_A1
Bank Locator: NODE 0 CHANNEL 0 DIMM 0
Type: Other
Type Detail: Synchronous
Speed: 1067 MHz (0.9 ns)
Manufacturer: 0x0198
Serial Number: 0xB12A9593
Asset Tag: Unknown
Part Number: 9965426-037.A00LF
# more such devices
(から分かるように、これは、ECCメモリとサーバーのためのものであるError Correction Type
フィールドとの間の差Data Width
とTotal Width
)。
両方のツールはubuntu-standard
パッケージの依存関係であり、すべてのUbuntuシステムでデフォルトで使用可能になっているはずです。以前は、という別のツールがありましたがhwinfo
、これは13.10以降Ubuntuでは使用できません。
この情報はでしか取得できませんでしたdmidecode
が、grepするのではなく、正しいタイプを使用する方がクリーンです。
sudo dmidecode --type memory
sudo dmidecode -t memory | less -N