OS & Shell/Linux

CPU 정보

냐옴 2012. 4. 10. 15:28

CPU 정보

cat /proc/cpuinfo


가상 CPU 코어 수

grep -c processor /proc/cpuinfo


물리 CPU 코어 수

grep -c 'physical id' /proc/cpuinfo


물리 CPU 수

tail -n 20 /proc/cpuinfo | grep 'physical id' | awk '{print $4+1}'