The command dmidecode is ” is a tool for dumping a computer’s DMI (some say SMBIOS) table contents in a human-readable format. This table contains a description of the system’s hardware components, as well as other useful pieces of information such as serial numbers and BIOS revision.” (from the “man”).
You need to be the Super User to run this command, for security reasons. And, so much crap comes out all at once that you need to pipe it through the “more” command to read it. So, if you are using a Debian distribution (like Ubuntu) or otherwise have “sudo” installed, try this:
sudo dmidecode | more
“sudo” effectively means “super user do” (though how and why it means that is obsucre and highly controversial) … and will cause a system that has that utility installed to ask for your password. The “|” thingie “pipes” the output of dmidecode to the command “more” which, in turn, fills one screen of your terminal at a time . Just hit the space bar to … read more.
This command will be useful if you need to know how much memory you have, what kind of processor you have, etc.




