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