Today :
Yesterday :
Total :
Yesterday :
Total :
Notice
Recent Posts
Recent Comments
JunToday.com
[리눅스] CPU정보 확인 본문
728x90
1. CPU 모델명 확인
grep "model name" /proc/cpuinfo | tail -1
2. CPU 전체 코어수(가상화 코어 포함)
grep -c processor /proc/cpuinfo
3. 장착 된 물리 CPU 수
grep "physical id" /proc/cpuinfo | sort -u | wc -l
4. CPU당 물리 코어 수
grep "cpu cores" /proc/cpuinfo | tail -1
5. CPU정보 확인
cat /proc/cpuinfo
728x90
'생활속의 IT 노하우 > 리눅스' 카테고리의 다른 글
리눅스 scp명령어 사용 방법 (0) | 2018.08.14 |
---|---|
CentOS7.X에서 hostname 설정하는 법 (0) | 2018.07.27 |
리눅스 lvm 확장/용량 추가 테스트 (0) | 2017.12.14 |
[리눅스] 원격지에서 ssh연결이 느릴 경우 해결 팁 (0) | 2017.07.28 |
[리눅스] 물리적 메모리 확인/메모리 슬롯 확인 (0) | 2017.06.14 |
Comments