0. CPU 정보 확인
> cat /proc/cpuinfo
1. CPU 코어 전체 개수 확인
> grep -c processor /proc/cpuinfo
2. 물리 CPU 수 확인
> grep "physical id" /proc/cpuinfo | sort -u | wc -l
3. CPU당 물리 코어 수 확인
> grep "cpu cores" /proc/cpuinfo | tail -1
출처 : http://nota.tistory.com/41
'IT > Linux' 카테고리의 다른 글
[ssh] host의 rsa키값이 변경되어서 접속이 불가할 때 (0) | 2015.04.20 |
---|---|
[nfs] client단에서 마운트 시킬 때 필요한 것... (0) | 2015.04.08 |
SCP 명령어 - 데이터 받아오기 (0) | 2015.03.19 |
[rsync] 주요 옵션 정리 링크 (0) | 2015.01.06 |
[centos] linux 메모리 확인 (0) | 2014.12.01 |