답변:
이것은 작동해야합니다 :
grep -c processor /proc/cpuinfo
또는
lshw -class processor -short
grep -c processor /proc/cpuinfo
출력은 4였다. 내 상자에 i3이 있기 때문에 혼란스럽고 듀얼 코어라고 생각했다.
OS X에서는 sysctl 또는 system_profiler를 사용할 수 있습니다.
$ sysctl hw.ncpu hw.physicalcpu hw.logicalcpu
hw.ncpu: 8
hw.physicalcpu: 4
hw.logicalcpu: 8
$ sysctl -n hw.ncpu # -n disables printing the names of variables
8
$ system_profiler SPHardwareDataType|grep Cores
Total Number of Cores: 4
내 프로세서는 하이퍼 스레딩을 지원하므로 8 개의 논리 코어와 4 개의 물리 코어가 있습니다.
이 명령은 다음 작업을 수행합니다. dmesg | grep CPU