Thursday, July 27, 2017

▷ Cpu sockets (CPU 소켓수)

[ To find cpu sockets ]


AIX prtconf | awk '/Number Of Processors:/ { print $NF }'
HP-UX (pa-risc) /opt/ignite/bin/print_manifest or ioscan -fknC processor
(ia64) machinfo | grep -v 'core.*logical' | awk '/[0-9] socket/ { print $1 }'
SunOS psrinfo -vp | grep physical | wc -l | awk '{ print $1 }'
Linux cat /proc/cpuinfo | awk '/physical id/ { print }' | sort | uniq | wc -l | awk '{ print $1 }'
Windows (wmic computersystem get NumberOfProcessors | findstr /v "^$" | select -Last 1).Trim()

No comments:

Post a Comment

◈ Recent Post

▷ UITest demo with TestOne (Mobile, Keypad and Drag until found tip)

[ UITest Demo Environment ] 1. UITest Solution: TestOne 2. Description 데모 설명    How to use keypad, and to drag until found.     키패드를...

◈ Popular Posts