728x90
반응형
CPU 정보 확인
$ cat /proc/cpuinfo
물리 CPU 개수 확인
$ grep "physical id" /proc/cpuinfo | sort -u | wc -l
논리 코어 개수 확인
$ grep -c processor /proc/cpuinfo
CPU 당 코어 개수 확인
$ grep "cpu cores" /proc/cpuinfo | tail -1
process 별 CPU 사용량 확인
$ top
CPU 코어별 사용량 확인
$ top
1
thread별 CPU 사용량 확인
$ top -H
출처
http://sarghis.com/blog/1136/
http://blog.naver.com/PostView.nhn?blogId=anbv3&logNo=130116624489
728x90
반응형
'Linux' 카테고리의 다른 글
[Tig] CentOS 7에 Tig 설치하기 (0) | 2020.09.17 |
---|---|
[chmod] 폴더 또는 파일만 권한 변경 (0) | 2020.09.17 |
(Linux) 언마운트 명령어 (0) | 2019.01.17 |
(Linux) vim 문자열 치환 (0) | 2018.11.21 |
(Linux) 디렉토리 내 파일 세기 (0) | 2018.10.07 |