1752822 Members
4298 Online
108789 Solutions
New Discussion юеВ

Re: Processors

 
mj_sivakumar
Occasional Contributor

Processors

How to find out the no. of processors in HP Servers (anymodel)?

Any commands pls. let me know.

Thanks in Advance
Regards
siva

6 REPLIES 6
Pete Randall
Outstanding Contributor

Re: Processors

ioscan -k |grep -n processor |wc -l

Check the attachment for lots more command line info about your system.


Pete

Pete
DCE
Honored Contributor

Re: Processors

Top and glance both will give you the number of processors.

stm (or cstm) will give you detailed info on them
Mel Burslan
Honored Contributor

Re: Processors

echo map | cstm | grep CPU | wc -l

will give you the number of cpus installed on your system
________________________________
UNIX because I majored in cryptology...
Sandman!
Honored Contributor

Re: Processors

Siva,

You can use either adb or SAM for extracting this information:

with adb...

# echo "runningprocs/D" | adb /stand/vmunix /dev/mem

with SAM...

SAM -> Performance Monitors -> System Properties

hope it helps!!!
Mahesh Kumar Malik
Honored Contributor

Re: Processors

Hi Siva

#top command gives you info on no of processers in HP servers

Regards
Mahesh
Vibhor Kumar Agarwal
Esteemed Contributor

Re: Processors

dmesg | grep processor
Vibhor Kumar Agarwal