Explore System Hardware Information with dmidecode
Discover comprehensive insights into your system's hardware configuration using dmidecode, a powerful utility that retrieves data from the Desktop Management Interface (DMI) of your computer's BIOS. From RAM speed to BIOS details, processor specifications to memory configurations, dmidecode empowers you to delve deep into the intricacies of your system's components.
Install dmidecode
emerge -a sys-apps/dmidecode
pacman -S dmidecode
apt install dmidecode
yum install dmidecode
Print current ram speed
dmidecode | perl -lne 'print $1 if /Current\s+Speed:\s+(\d+\s+MHz)/
Print bios info
dmidecode -t bios
Print system info
dmidecode -t system
Print baseboard info
dmidecode -t baseboard
Print chassis info
dmidecode -t chassis
Print processor info
dmidecode -t processor
Print memory info
dmidecode -t memory
Print cache info
dmidecode -t cache
Print connector info
dmidecode -t connector
Print slot info
dmidecode -t slot