Menurut /ubuntu/18372/how-can-i-find-out-what-ram-a-computer-system-has , one-liner yang Anda cari adalah
sudo lshw -short -C memory
Ini akan memuntahkan sesuatu di sepanjang baris
H/W path Device Class Description
===========================================================
/0/0 memory 64KiB BIOS
/0/4 memory 256KiB L1 cache
/0/5 memory 1MiB L2 cache
/0/6 memory 8MiB L3 cache
/0/7 memory 8200MiB System Memory
/0/7/0 memory 4GiB DIMM DDR3 Synchronous
/0/7/1 memory DIMM [empty]
/0/7/2 memory 4GiB DIMM DDR3 Synchronous
/0/7/3 memory DIMM [empty]
/0/7/4 memory 8MiB FLASH
Ketahuilah bahwa string yang dapat dibaca manusia ( 4GiB DIMM DDR3
) dilaporkan sendiri oleh RAM dan / atau BIOS, sehingga tidak dalam format standar apa pun. Jika Anda benar-benar beruntung, itu akan secara eksplisit mengatakan DDR3
atau DDR4
. Jika tidak, jika ini menunjukkan frekuensi dalam MHz, Anda dapat mencoba membedakan berdasarkan itu.
Dari Wikipedia :
DDR1: 2.5 V, 133–200 MHz
DDR2: 200–400 MHz
DDR3: 1.5 V, 400–800 MHz (up to 1400 MHz for super-high-end)
DDR4: 1.2 V, 2133–4266 MHz
Sebagai contoh: DDR4 RAM komputer saya yang lain muncul secara lshw -short -C memory
sederhana 16GiB DIMM Synchronous 2133 MHz (0.5 ns)
. Peringkat MHz menunjukkan bahwa itu hampir pasti DDR4.
dmidecode
?