Operating System - HP-UX
1833777 Members
2120 Online
110063 Solutions
New Discussion

Memory - How much is where?

 
SOLVED
Go to solution
Hector Quiroz
New Member

Memory - How much is where?

I would like to find out how many memory modules are installed in a K420 and how much is in each slot.

6 REPLIES 6

Re: Memory - How much is where?

Hi Hector!

I know this method.

1) Reboot the system
2) Stop Boot ("press any key withing 10 seconds")
3) In Main menu select INformation menu
4) In Infomation Menu select MEmory
5) Appears "Memory Module Information"
6) Bye :)

CGRC
Victor_5
Trusted Contributor

Re: Memory - How much is where?

stm(mstm)-->select 'memory'
Tools-->Information-->run

You will find what you are looking for.
James R. Ferguson
Acclaimed Contributor
Solution

Re: Memory - How much is where?

Hi Hector:

Do this:

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

You will see the distribution and size of each memory SIM.

If you don't have 'stm' (Support Tools Manager) [a.k.a. 'cstm & mstm'] loaded, go here to download, or get it from your current SupportPlus CDROM from the /cdrom/DIAGNOSTICS/B.11.00 directory:

http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B6191AAE

...JRF...
Ajitkumar Rane
Trusted Contributor

Re: Memory - How much is where?

You can do it as
1> STM or the command , the procedure is already given to you by others, some times this doesent help stm may not show you the information you want. then no option but to

2>Reboot the system the procedure is already given to you.

Or finally you can just open the front cover of your K box and pull out the memory carrires to physically check the modules.

good luck.
Amidsts difficulties lie opportunities
Joe Colucci_1
Frequent Advisor

Re: Memory - How much is where?

Hector,

The amount of memory is written to syslog during startup. You can get the amount of memory by doing:

grep Physical /var/adm/syslog/syslog.log
Vincenzo Restuccia
Honored Contributor

Re: Memory - How much is where?

`echo "physmem/D" | adb /stand/vmunix /dev/kmem | tail -1 | awk '$2 > 0 {print $2 / 256 , "MByte" }'`


adb /stand/vmunix /dev/kmem | tail -1 | awk '{print $2}'`