Identifying RAM

From FreekiWiki
Revision as of 12:18, 1 February 2011 by Paulm (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Recipe for identifying RAM. Uses dmidecode a utility that reads the DMI table (a.k.a. bios settings)

sudo dmidecode -t 17 | grep -e 'Type: DDR2\?3\?\|Speed: [^(Unknown)]' | sort | uniq

(This comes from one of the build instructors who says: “I'm pretty sure it won't report the actual speed of RAM, and instead the speed supported by the DIMM, so we'll still probably have to keep an eye out for RAM faster than what the computer supports.”)