1835388 Members
3062 Online
110078 Solutions
New Discussion

Re: system info

 
navin
Super Advisor

system info

how do i see cpu information in a hp server and how much amount of cpu i can raise in the future that kind of information
thanks
Learning ...
11 REPLIES 11
Steven E. Protter
Exalted Contributor

Re: system info

Shalom,

Best way is via online diagnostics.
cstm

or:

http://www2.itrc.hp.com/service/cki/search.do?searchString=UPERFKBAN00000726&docType=Security&docType=Patch&docType=EngineerNotes&docType=BugReports&docType=Hardware&docType=ReferenceMaterials&docType=ThirdParty&hpweb_printable=true&searchCrit=allwords&search.x=28&admit=-1335382922+1157656691296+28353475&mode=id&category=c0&search.y=8

Lots of good stuff in there.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
IT_2007
Honored Contributor

Re: system info

you can use top or glance commands to see real time activity.

Otherwise to get past few months reports you can use "extract" command if your system already running Measureware.

You can use sar command too.
James R. Ferguson
Acclaimed Contributor

Re: system info

Hi Navin:

# echo "selclass qualifier cpu;info;wait;infolog"|cstm > /tmp/stminfo

...then consult the matching hardware's documentation:

http://docs.hp.com/en/hw.html

Regards!

...JRF...
V.Manoharan
Valued Contributor

Re: system info

Hi Navin,
You can get the cpu information from cstm command.

#cstm
cstm>scl --> select for processor
cstm>info
cstm>infolog ---> this output will give detail information about the processors.

otherwise you can check from the BCH.
main>-->information menu -> processor.

Thanks and regards
V.Manoharan

V.Manoharan
Valued Contributor

Re: system info

Hi Navin,
You can get the cpu information from cstm command.

#cstm
cstm>scl --> select for processor
cstm>info
cstm>infolog ---> this output will give detail information about the processors.

otherwise you can check from the BCH.
main>-->information menu -> processor.

This will give information about the installed processor . you need to check the max processor support from the Product support Plan.

Thanks and regards
V.Manoharan

navin
Super Advisor

Re: system info

can i use cstm for getting memory and future memory increase info.
tahnks
Learning ...
Kevin Wright
Honored Contributor

Re: system info

absolutely. Run cstm, and go through the help on the menu's.

James R. Ferguson
Acclaimed Contributor

Re: system info

Hi Navin:

Analogous to the gathering 'cpu' information with 'cstm', do:

# echo "selclass qualifier memory;info;wait;infolog" | cstm > /tmp/meminfo

Regards!

...JRF...
NMory
Respected Contributor

Re: system info

If you are using an Itanium box, you can use the #machinfo command to grab server information. That includes, memory, cpu, etc.
Mustafa Gulercan
Respected Contributor

Re: system info

hi;
here is a script for cpu information.

regards;
mustafa
Raj D.
Honored Contributor

Re: system info

Navin,

-------------------------------------------------------------------------------------------------------------
Finding CPU speed:

echo itick_per_usec/D | adb -k /stand/vmunix /dev/mem

echo "selclass qualifier cpu;info;wait;infolog" | /usr/sbin/cstm
------------------------------------------------------------------------------------------------------------

-----------------------------------------------------------------------------------------------------------------
Finidng CPU speed in Mhz, in a single command:

echo "CPU Speed is= \c" ; echo itick_per_tick/D|adb -k /stand/vmunix /dev/kmem|tail -1|cut -f2 | awk '{printf "%0f MHz\n", $1/10000}'

------------------------------------------------------------------------------------------

Finaly also you can find with sam,


Cheers,
Raj.
" If u think u can , If u think u cannot , - You are always Right . "