0

How can i find the Number of my CPU Cores

Is there any command to check that how many CPU cores i am having on my Linux Machine?

CPU Usage Add a comment
ryder
asked Dec 29 2017

Answer

0

You can simply view the cpuinfo file (/proc/cpuinfo) using cat command and there you can find your CPU cores

cat /proc/cpuinfo

or simply grep the file to see processor core like below

grep -c ^processor /proc/cpuinfo
Add a comment
parthiban
asked Dec 29 2017
edited Oct 05 2018
Post your Answer