Mac/Linux/Windows : Get CPU information from command line
Writing these down here for future references, will be handy with comes to identifying a machine's CPU information during system maintenance time. Below are the command line tools to get the CPU information in Windows, Mac OS X and Linux.
Linux:
$cat /proc/cpuinfo
Mac OS X:
$sysctl -n machdep.cpu.brand_string
Windows 8 and above:
C:>wmic cpu full /format:list
NOTE: For Windows, without the /format:list
... the output result will be almost impossible to read. You can choose to use /format:htable
for HTML, /format:csv
for csv format or /format:xml
for xml format as well.
References:
https://adamscheller.com/systems-administration/find-cpu-model-linux/
http://osxdaily.com/2011/07/15/get-cpu-info-via-command-line-in-mac-os-x/
http://www.pearsonitcertification.com/articles/article.aspx?p=1700427&seqNum=4
See also : Golang : Get hardware information such as disk, memory and CPU usage
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+12.8k Golang : Calculate elapsed years or months since a date
+14.1k Golang : Send email with attachment(RFC2822) using Gmail API example
+11.7k Golang : Determine if time variables have same calendar day
+9.6k Golang : Function wrapper that takes arguments and return result example
+6.3k Golang : Map within a map example
+5.8k Javascript : Get operating system and browser information
+13.5k Golang : unknown escape sequence error
+26.5k Golang : Find files by extension
+19k Golang : Get RGBA values of each image pixel
+6.2k PHP : Proper way to get UTF-8 character or string length
+30.5k error: trying to remove "yum", which is protected
+5.1k Python : Delay with time.sleep() function example