[H/W][Command] 하드웨어 조회 정보 (CentOS)
시스템을 운영하다보면 하드웨어 정보가 필요한 경우가 있다. Hostname hostname 서버 정보 dmidecode -t 1 | grep Product | awk '{print 4,$5}' OS 정보 cat /etc/redhat-release uname -a CPU 사양 CPU 모델명 : cat /proc/cpuinfo | grep "model name" | uniq -c | awk '{print $5 $6, $7,$8, $9, $10 $11}' CPU당 물리 코어 수 : cat /proc/cpuinfo | grep "cpu cores" | tail -1 | awk '{print $4}' 물리 CPU 수 : cat /proc/cpuinfo | grep "physical id" | sort -u | w..
Infra Structure/.system
2017. 7. 16. 20:20