"리눅스 하이퍼스레딩 확인"의 두 판 사이의 차이

39번째 줄: 39번째 줄:
==참고 자료==
==참고 자료==
*http://unix.stackexchange.com/questions/33450/checking-if-hyperthreading-is-enabled-or-not
*http://unix.stackexchange.com/questions/33450/checking-if-hyperthreading-is-enabled-or-not
*http://snoopybox.co.kr/1738
[[분류: 리눅스]]
[[분류: 리눅스]]

2014년 6월 18일 (수) 17:34 판

Checking if HyperThreading is enabled or not?
리눅스 하이퍼스레딩 확인

1 방법 1: cpuinfo

[root@jmnote ~]# cat /proc/cpuinfo | grep 'cpu cores' | head -1
cpu cores	: 4
[root@jmnote ~]# cat /proc/cpuinfo | grep 'siblings' | head -1
siblings	: 8

2 방법 2: dmidecode

[root@jmnote ~]# dmidecode -t processor | grep 'Core Count' | head -1
	Core Count: 4
[root@jmnote ~]# dmidecode -t processor | grep 'Thread Count' | head -1
	Thread Count: 8
dmidecode -t processor | grep HTT
실행예시 (활성화됨)
[root@jmnote ~]# dmidecode -t processor | grep HTT | head -1
		HTT (Hyper-threading technology)
실행예시 (비활성화됨)
[root@jmnote2 ~]# dmidecode -t processor | grep HTT | head -1
                     HTT (Multi-threading)

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}