1834935 Members
2181 Online
110071 Solutions
New Discussion

CPU status

 
SAM_24
Frequent Advisor

CPU status

Hi,

Is there any command available to show the individual CPU status like mpstat on solaris?

vmstat only will show only average for all CPUs.

Thanks.
Never quit
5 REPLIES 5
Michael Tully
Honored Contributor

Re: CPU status

Hi,

The 'top' command will show you each individaul CPU load. You can also get snapshot into a file, using 'top -f'

HTH
~Michael~
Anyone for a Mutiny ?
U.SivaKumar_2
Honored Contributor

Re: CPU status

Hi,
use this
#sar -M 1 10

regards,
U.SivaKumar
Innovations are made when conventions are broken
frueyang
Occasional Advisor

Re: CPU status

Hi ,

A plus named GlancePlus, which has TUI or GUI will help you monitoring your CPU and other devices conveniently. However, I don't know where to download it. Perhaps it is inclued in the addtional plus CD of OS.
Sritharan
Valued Contributor

Re: CPU status

Hi,
You can use top to see the status of the individual cpu it will show the load,user,idle and etc info regarding the cpu.

You can also use the Glance Plus(GUI)to get the cpu info in more interactive way.

That's all from me

Regards
Sri
Known is a drop...unknown is an ocean -> quote from a movie
Steve Lewis
Honored Contributor

Re: CPU status

Actually vmstat can be made to show each cpu if you use the -n parameter.

e.g. vmstat -S -n 5 6

shows a line (user/sys/idle) for each cpu.

All the other solutions posted are at least as good as this anyway.