How to get CPU make, model etc details in MacOS
I want to get the exact CPU model of my MacBook Pro, If I goto About This Mac
I see the following string
Processor: 2.3 GHz 8-Core Intel Core i9
How can I get the exact CPU model?
1 Answer
4 years ago by cody
You can the full system information by using sysctl -a
command. And you will see the CPU make and model in property achdep.cpu.brand_string
.
So you an run the following command to get the CPU make and model.
sysctl -a | grep machdep.cpu.brand_string
This gives something like following
$ sysctl -a | grep machdep.cpu.brand_string
machdep.cpu.brand_string: Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz
4 years ago by Karthik Divi