How to get the SPD infomation in freebsd ?

In windows, the `CPU-Z` utility can be used to get the SPD(Serial Presence Detect) information. How about freebsd ? I want to get those information especially frequency to add more memory. And i donot want to touch the hardware.

Sincerely!
 
Code:
sudo dmidecode > specs.txt
Will make you a file specs.txt
or
Code:
 $ sudo dmidecode --type 17
Will get you just the ram to sdout
 
Back
Top