Hi,
could anyone tell me how to check the processor speed. I have a 7013-59H server and want to check the processor speed.Tried finding out thro diag but couldn't succeed.
Here's a way I was shown we do it in automated scripts that check system configurations. A bit more techie, but an interesting way to know. Plus if you do need to automate somthing...
lscfg -vp | pg
scroll down until you find the CPU info, towards the bottom. It will look like
Orca M5 CPU:
Under those headings (there will be multiple for more than one cpu), look for the line Product Specific PS=_______________
Example on the F50 PS=0013c9eb00. That is the Hex number for the cpu speed.
You can then use this to convert it: (Note there are two spaces after the printf) printf "%d/n" )x00013c9eb00
That will return with 332000000.
Then do some math and divide it by 1000, twice and you'll get 332 or 332Mhz.
**************
If you don't need to automate, then use the uname method. Do a man on uname and you'll see the codes and can determine the model you have. You can then go to the Hardware documentation and look for you CPU info.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.