Operating System - HP-UX
1834279 Members
1970 Online
110066 Solutions
New Discussion

Re: Get memory configuration

 
SOLVED
Go to solution
Marcelo De Florio_1
Frequent Advisor

Get memory configuration

How can i get the total real memory available in HP-UX 11.0 ?

MDF
Marcelo De Florio
9 REPLIES 9
A. Clay Stephenson
Acclaimed Contributor
Solution

Re: Get memory configuration

Hi Marcelo:

Do this:

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

This will display the number of 4K pages of memory.

Clay
If it ain't broke, I can fix that.
nancy rippey
Trusted Contributor

Re: Get memory configuration

You can gather a lot of memory information with the following
echo "selclass qualifier memory; info; wait; infolog" | cstm > /tmp/meminfo

Hope this helps
nrip
Marcelo De Florio_1
Frequent Advisor

Re: Get memory configuration

Ok, this number is all memory available for a system ?

MDF
Marcelo De Florio
James R. Ferguson
Acclaimed Contributor

Re: Get memory configuration

Hi Marcelo:

If you want to see your physical (installed) memory configuration, use STM (support Tools Manager):

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

...JRF...

Magdi KAMAL
Respected Contributor

Re: Get memory configuration

Hi Marcelo,

Type :

dmesg

And under Memory information, the value of "Physical" is what you have as physical memory in your server.

Magdi
MANOJ SRIVASTAVA
Honored Contributor

Re: Get memory configuration

Hi Marcelo

1. dmesg | grep Phy
2. SAM --->Performance Monitor --->System Properties----> Memory.
3.STM.
4.Also shows up in details in Glance.

Manoj Srivastava
Alex_17
Frequent Advisor

Re: Get memory configuration

Hi,

to see how much memory is installed:

# grep -i physical /var/adm/syslog/syslog.log

or

stm

or

/usr/sbin/dmesg

SAM/performance monitors/system properties/memory

Or
/opt/perf/bin/glance, then option m.
(Only if Glance is installed)

Alex.
Alex_17
Frequent Advisor

Re: Get memory configuration

Hi,

you can use:

# grep -i physical /var/adm/syslog/syslog.log

or

stm

or

/usr/sbin/dmesg

SAM/performance monitors/system properties/memory

Or
/opt/perf/bin/glance, then option m.
(Only if Glance is installed)

Alex.
Josep Laudes
New Member

Re: Get memory configuration

Hi Marcelo,
if you have installed:
HP-UX Installation Utilities (Ignite-UX)
you can run:
/opt/ignite/bin/print_manifest | more
and see the amount of physical memory of your system and other configuration issues.

Josep