작성일자 : 2018.02.09
환경 : Redhat 6, CentOS 6,7
> cat /proc/cpuinfo
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 62
model name : Intel(R) Xeon(R) CPU E7-4809 v2 @ 1.90GHz
stepping : 7
microcode : 1805
cpu MHz : 1895.433
cache size : 12288 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
apicid : 1
initial apicid : 1
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 mmx fxsr sse sse2 ss ht syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts xtopology tsc_reliable nonstop_tsc aperfmperf unfair_spinlock pni pclmulqdq ssse3 cx16 pcid sse4_1 sse4_2 x2apic popcnt aes xsave avx f16c rdrand hypervisor lahf_lm arat epb pln pts dtherm fsgsbase smep
bogomips : 3790.86
clflush size : 64
cache_alignment:64
address sizes : 40 bits physical, 48 bits virtual
power management:
#
-----
물리적 CPU( 소켓 ) - physicalid 개수( 실제로 메인보드에 들어가는 CPU 개수 ( =< 소켓 수 ))
물리적 코어 - cpu cores
논리적 코어( Thread ) - sibling과 cpu cores와 비교하여 차이가 2배 난다면 HTT가 적용
총 코어 개수- processor ( 0부터 카운트 시작 )
위의 정보를 정리하면 아래와 같이 됩니다.
1개 이상의 소켓에 1개의 물리적 CPU가 장착, 물리적인 코어는 2개이고 siblings와 cpu cores의 차이가 없기 때문에 HTT ( Hyper Threading Technology )가 적용 되어 있지 않아 논리적인 코어도 2개가 되며 전체 CPU Core( Processor )는 2개가 됩니다.
+ HTT는 Interl社의 멀티 스레딩 기법, SMT는 AMD社의 멀티스레딩 기법
'Linux' 카테고리의 다른 글
[Linux] Apache 설치 (0) | 2018.07.03 |
---|---|
Root 권한 부여 (0) | 2018.06.13 |
[Linux] 환경변수 설정 (0) | 2018.02.15 |
[Linux] JDK 설치 (0) | 2018.02.15 |
Linux Root 직접접근 제한 (0) | 2018.02.12 |