Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
725 views
in Technique[技术] by (71.8m points)

unix - uniprocessor or multiprocessor

On unix, how could we know whether the system is multiprocessor or uniprocessor?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...