Display cpu information – Linux

Reading Time: < 1 minute

The below will display CPU information on a Linux server.

Type:
cd /proc/
cat cpuinfo

The above will input info for all your CPUs but if you want to obtain certain info such as cpu type or mhz you could use the commands below:

cat cpuinfo | grep MHz

or

cat cpuinfo | grep type

or

cat cpuinfo | grep mod

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.