안녕하세요. 이사작전.com의 개발자 플랫폼공작소입니다.
오늘은 Linux 명령어로 H/W 스펙 확인하는 방법을 공유하려합니다.
리눅스 종류 확인, 리눅스 버전 확인
-> grep . /etc/*-release
CPU 코어 전체 개수 확인
-> grep -c processor /proc/cpuinfo
호스트네임 확인
-> hostname
시리얼 넘버 확인
-> dmidecode | grep 'Serial Number' | head -1
메모리 용량 확인
-> cat /proc/meminfo | grep MemTotal
HDD 용량 또는 갯수 확인
-> fdisk -l | egrep 'Disk.*bytes' | awk '{ sub(/,/,""); sum +=$5;print $1" "$2" "$3" "$4" "$5" "$6 } END { print "total: " sum/1024/1024/1024 " GB" }'
서비스 모델
-> dmidecode -s system-product-name
감사합니다.