Jawaban:
Ini harus dilakukan:
sudo lshw -short -C memory
Gunakan lshw
perintah dengan memory
kelas:
$ 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.
Seperti yang Anda lihat, saya menggunakan DDR3 1600MHz RAM.
Pilihan lain adalah 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
Ini untuk server dengan memori ECC (seperti yang dapat dilihat dari Error Correction Type
bidang dan perbedaan antara Data Width
danTotal Width
).
Kedua alat adalah dependensi dari ubuntu-standard
paket dan harus tersedia secara default di semua sistem Ubuntu. Dulu ada alat lain yang disebut hwinfo
, yang tidak lagi tersedia untuk Ubuntu sejak pukul 13.10.
Saya hanya bisa mendapatkan info ini dmidecode
, tetapi alih-alih menangkap, lebih baik menggunakan jenis yang benar:
sudo dmidecode --type memory
sudo dmidecode -t memory | less -N
Ini akan memberi Anda semua informasi yang Anda inginkan, mungkin:
sudo dmidecode | grep -A 15 Memory