CPU 코어 개수를 알아내는 방법은 다양하다.
CPU Core 전체 개수(논리 프로세서, Logical Processors)
$ sudo grep -c processor /proc/cpuinfo
물리 CPU(Physical CPU) 개수
$ sudo grep ^processor /proc/cpuinfo | wc -l
혹은
$ sudo dmidecode -t processor | grep 'Socket Designation'
CPU당 물리 코어 개수
$ sudo grep 'cpu cores' /proc/cpuinfo | tail -1
'Eureka > Linux' 카테고리의 다른 글
[Solution] How to Fix "E: Sub-process /usr/bin/dpkg returned an error code (1)" (2) | 2014.10.27 |
---|---|
[Tip] How to Change Display Resolutions in Linux (0) | 2014.10.26 |
[Tip] How to Change Keyboard repeat delay in linux (0) | 2014.10.26 |
[Tip] How to get make build time (0) | 2014.10.08 |
[Tip] How to Speed Up Compilation use make option (0) | 2014.10.08 |
[Solution] How to Fix Black Screen in Linux Team Fortress 2 (0) | 2014.09.24 |
[Tip] How to change Alt + Tab active in Linux Mint 16. (0) | 2014.09.05 |
[Tip] How to show Package install Log in Linux (0) | 2014.09.04 |