1833802 Members
2427 Online
110063 Solutions
New Discussion

memory size

 
vladimir gershman
Occasional Advisor

memory size

Hello,

How do I determine size of RAM installed on HPUX system? I tried vmstat, but the results do not make sense.

thanks,

vlad
4 REPLIES 4
curt larson_1
Honored Contributor

Re: memory size

here is a thread that has several
ways to determine size of the physical memory

http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x6f82227a6ab4d711900a0090279cd0f9,00.html
Con O'Kelly
Honored Contributor

Re: memory size

Hi

# grep Physical /var/adm/syslog/syslog.log

Cheers
Con
Tim Adamson_1
Honored Contributor

Re: memory size

Try:

/usr/contrib/Q4/bin/kmeminfo.

Returns lots of good information.


Tim.
Yesterday is history, tomorrow is a mystery, today is a gift. That's why it's called the present.
T G Manikandan
Honored Contributor

Re: memory size

echo phys_mem_pages/D | adb64 /stand/vmunix /dev/mem

The result is in memory pages - multiply by 4096 for value in Bytes.

you can also use

#cat /var/adm/syslog/syslog.log|grep Phy


Thanks