1847488 Members
3745 Online
110265 Solutions
New Discussion

checking clock speed

 
SOLVED
Go to solution
Chern Jian Leaw
Regular Advisor

checking clock speed

HI,

What is the command to check the clock speed for a particular HP machine? i.e it's a J2240 model.

Or, can anyone show me how to write a script to obtain the clock speed info?

Thanks.
5 REPLIES 5
Michael Tully
Honored Contributor
Solution

Re: checking clock speed

Hi,

This should work. The output below is from an N4000 which 550MHz processors.

# echo itick_per_usec/D | adb -k /stand/vmunix /dev/kmem
itick_per_usec:
itick_per_usec: 550

HTH
Michael
Anyone for a Mutiny ?
S.K. Chan
Honored Contributor

Re: checking clock speed

You don't need a script. It's one liner command..

# echo "itick_per_usec/D" | adb -k /stand/vmunix /dev/kmem

OR

Use SAM:-
Sam->Performance
Performance Monitors->System Properties

OR

Use xstm or cstm

T G Manikandan
Honored Contributor

Re: checking clock speed

Just go into SAM--->performance Monitor-->system properties

find the clock speed

ALso you could use

#echo itick_per_tick/D | adb -k /stand/vmunix /dev/kmem


Thanks
Manikandan
kish_1
Valued Contributor

Re: checking clock speed

try man getconf, am not sure will give the processor speed
share the power of the knowledge
MANOJ SRIVASTAVA
Honored Contributor

Re: checking clock speed

Hi

couple of ways to do it:

1. SAM---->Performance Monitors ---->System Properties---->CPU

2.echo itick_per_usec/D | adb -k /stand/vmunix /dev/kmem

Manoj Srivastava