开发者

uniprocessor or multiprocessor

开发者 https://www.devze.com 2022-12-11 01:48 出处:网络
On unix, how could we know w开发者_Python百科hether the system is multiprocessor or uniprocessor?Some times we have to answer owr own question :)

On unix, how could we know w开发者_Python百科hether the system is multiprocessor or uniprocessor?


Some times we have to answer owr own question :)

On Solaris run the command

/usr/sbin/psrinfo -v|grep "Status of processor"|wc -l

On AIX run the command

lsdev -C|grep Process|wc -l

On HP-UX run the following commands (requires superuser privileges):

P=`echo processor_count/D | adb -k /stand/vmunix /dev/mem |tail -1|awk '{print $2}'` echo "The number of processors on `hostname` = $P"

On Tru64 run the command

 /usr/sbin/psrinfo -v|grep "Status of processor"|wc -l


How about

cat /proc/cpuinfo | grep -i 'processor' | wc -l

Or even

 dmesg | grep -i cpu

Look out for "Brought up x processors" in the last one


I don't know if it applies to Unix as well, but for Linux, from command line, see here: http://www.howtogeek.com/howto/ubuntu/display-number-of-processors-on-linux/

0

精彩评论

暂无评论...
验证码 换一张
取 消