Operating System - HP-UX
1833051 Members
2280 Online
110049 Solutions
New Discussion

Checking Installed Memory

 
SOLVED
Go to solution
Amit Dixit_2
Regular Advisor

Checking Installed Memory

HI,
How can I check Installed Memory Size on my
machine ?
4 REPLIES 4
Michael Tully
Honored Contributor
Solution

Re: Checking Installed Memory

There are a few ways, but I prefer this one as it gives a full report.

# echo "selclass qualifier memory;info;wait;infolog" | cstm

also

# dmesg | grep -i physical (sometimes not good if the buffer has been removed)
Anyone for a Mutiny ?

Re: Checking Installed Memory

Hi Amit,

You can get information about total physical memory on your HPUX system.
1. By using dmesg:In the last you will see total memory detail( Physical, locable & available memory0
2. using SAM-> performance monitor->System properties-> Memory

3. With the help of infolog

Gauarv
Darren Murray_1
Frequent Advisor

Re: Checking Installed Memory

I know its a little late but if you have ignite ux installed the command print_manifest is available. A good command to get a a brief overview of your system.

CHeers
Darren
Philip Kime
Regular Advisor

Re: Checking Installed Memory

echo "phys_mem_pages/D" | adb -k /stand/vmunix /dev/kmem | grep "phys_mem_pages: *." | awk '{print int($2*4/1024+.5)}'`

This gives you the right numer in Megabytes.