# Count the number of “physical processor(s)â€
grep “physical id” /proc/cpuinfo | sort -u | wc -l
1
# Count the number of “physical cores per CPUâ€
grep “cpu cores” /proc/cpuinfo |sort -u |cut -d”:” -f2
2
# Count the number of “logical cores †(including multi-threading cores)
grep -c “processor” /proc/cpuinfo
2
Find Number of CPU sockets