CPU InformationΒΆ

To find the number of cores in the CPU issue this command in a terminal

grep processor /proc/cpuinfo
../_images/cores.png

To find the CPU speed

grep 'cpu MHz' /proc/cpuinfo
../_images/cpu-speed.png

To get all the CPU information

cat /proc/cpuinfo
../_images/cpu-info.png

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