답변:
당신은 CPU를 셀 수 없습니다
cat /proc/cpuinfo | grep processor | wc -l
출력 :
2
코어 수를 확인하려면!
cat /proc/cpuinfo | grep 'core id'
core id : 0
core id : 1
또는
$ nproc
2
또는 lscpu는 모든 출력을 보여줍니다 :
lscpu
Architecture: i686
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 2
On-line CPU(s) list: 0,1
Thread(s) per core: 1
Core(s) per socket: 2
Socket(s): 1
Vendor ID: GenuineIntel
CPU family: 15
Model: 4
Stepping: 7
CPU MHz: 2792.992
BogoMIPS: 5585.98
L1d cache: 16K
L2 cache: 1024K
grep -c processor /proc/cpuinfo
nproc
사용 가능한 코어 수에 따라 스크립트에서 유용합니다. 예 make -j$(nproc)
.
lscpu
답 을 포함하여 +1 합니다. 사용하기 가장 쉬운 명령입니다.
기존 답변에 추가하려면 / proc / cpuinfo의 "형제"줄을 보면 인텔의 하이퍼 스레딩에 대한 정보를 확인할 수 있습니다. 아래의 예는 2 소켓 머신입니다. CPU에 6 개의 코어가 있지만 12 개의 "형제"가 있음을 나타냅니다. Intel CPU에서 이는 하이퍼 스레딩이 활성화되고 6 개의 물리적 코어가 있음을 의미합니다.
processor : 23
vendor_id : GenuineIntel
cpu family : 6
model : 62
model name : Intel(R) Xeon(R) CPU E5-2430 v2 @ 2.50GHz
stepping : 4
microcode : 0x428
cpu MHz : 1599.707
cache size : 15360 KB
physical id : 1
siblings : 12
core id : 5
cpu cores : 6
apicid : 43
initial apicid : 43
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm ida arat xsaveopt pln pts dtherm tpr_shadow vnmi flexpriority ept vpid fsgsbase smep erms
bogomips : 5005.20
clflush size : 64
cache_alignment : 64
address sizes : 46 bits physical, 48 bits virtual
power management:
dmidecode는 Linux 시스템에서 실행중인 하드웨어를 확인하는 데에도 유용합니다.
유형:
lscpu |grep 'CPU(s)'
당신은 다른 몇 줄 중 하나를 얻을 것입니다.
CPU(s) 4
CPU에 따라 4 대신 1, 2 ...를 얻을 수 있으며 이는 CPU에있는 코어 수입니다.
grep
에서-c
옵션을 사용 하여 일치 항목을 계산할 수 있습니다wc
.