Operating System - HP-UX
1827810 Members
1995 Online
109969 Solutions
New Discussion

Re: how to find memory modules

 
SOLVED
Go to solution
Ra Jose
Regular Advisor

how to find memory modules

Does anybody know how to find how many DIMMs
are available on my rp4440 server, how
many DIMMs are used and sizes of DIMMs used ?

This is not partition server, so parstatus
commands are not available.

I tried sysinfo, print_manifest, no luck.

This is running 11iv1.

Thank you all.
Rajose
5 REPLIES 5
Torsten.
Acclaimed Contributor
Solution

Re: how to find memory modules

Run

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

you will see the size of the DIMMs, how many are installed and the number of empty slots.

Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Sandman!
Honored Contributor

Re: how to find memory modules

# echo 'scl q mem;info;wait;il;done' | cstm
Ra Jose
Regular Advisor

Re: how to find memory modules

Thank you sir. Both worked of what I was
looking.

Rajose.
Prashanth.D.S
Honored Contributor

Re: how to find memory modules

Hi Jose,

You can also run

#echo "gop cstmpager cat;scl type mem;info;wait;il"|cstm > /tmp/mem.out

This will let u know how many memory Dimms are available along with the size and location.

Best Regards,
Prashanth
Ra Jose
Regular Advisor

Re: how to find memory modules

Thank you.