CPU InformationΒΆ
To find the number of cores in the CPU issue this command in a terminal
grep processor /proc/cpuinfo

To find the CPU speed
grep 'cpu MHz' /proc/cpuinfo

To get all the CPU information
cat /proc/cpuinfo

This is all the information about the first processor, all of the processors are printed out using the above command.