CPUs

davidpm(44)
Published in
#linux
Words
73
Reading
1 min
Listen
Play
9y

Ever needed to check really quick how many CPUs your *nix machine is running? Maybe you're logged into a remote server, or maybe you just forgot. In any case, I keep finding myself in a such situations and have had to look this up more than once.

Quickie

Here's a couple ways to go about it. On Linux boxes you can run:

> grep -c processor /proc/cpuinfo
=> 4

Or opt for the less verbose:

> nproc
=> 4

On MacOS:

> sysctl -n hw.physicalcpu
=> 8

ʘ‿ʘ