1832602 Members
2460 Online
110043 Solutions
New Discussion

Re: physical memory

 
SOLVED
Go to solution
Shivkumar
Super Advisor

physical memory

Dear Sirs,

What are the commands to find out the physical memory on the hpux 11:00 and hpux 11.11 ?

Thanks,
Shiv
12 REPLIES 12
RAC_1
Honored Contributor
Solution

Re: physical memory

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

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

echo memory_installed_in_machine/D | adb -k /stand/vmunix /dev/kmem

print_manifest

echo "selclass qualifier memory;info;wait;infolog" | cstm
There is no substitute to HARDWORK
James R. Ferguson
Acclaimed Contributor

Re: physical memory

Hi Shiv:

My favorite:

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

Regards!

...JRF...
DCE
Honored Contributor

Re: physical memory

memory amounts are also available in glance and dmesg

Rick Garland
Honored Contributor

Re: physical memory

On a PA-RISC system;

echo "selclass type memory;info;wait;infolog" | cstm


On an Itanium system;
/usr/contrib/bin/machinfo
Joseph Loo
Honored Contributor

Re: physical memory

hi shiv,

the same for both version.

refer to what u posted:

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=943674

regards.
what you do not see does not mean you should not believe
Rajesh SB
Esteemed Contributor

Re: physical memory

Hi,

Best way is using OnlineDiag tool.
In "stm" or "cstm" tool shows details information about memory like.

What is Physical Memory installaed.
How many slots are occupied with what capacity modules like 128MB/256MB/512MB/1GB.

For high level info
dmesg|grep Ph

Some time dmesg cannot retain these message,if any other message here. Then,

grep -i Phy /var/adm/syslog/syslog.log

Regards,
Rajesh
Cem Tugrul
Esteemed Contributor

Re: physical memory

Shiv,
As an addition the other replies;
Go to SAM;
Performance Monitor-->System Properties

Good Luck,

Our greatest duty in this life is to help others. And please, if you can't
Cem Tugrul
Esteemed Contributor

Re: physical memory

one more choice;
#print_manifest|egrep -i memory

Good Luck,
Our greatest duty in this life is to help others. And please, if you can't
Raj D.
Honored Contributor

Re: physical memory

Hi Shiv,

You can also try ,
1. # dmesg | grep -E "phy | mem"
2. # cat /var/adm/syslog/syslog.log | grep -i Physical

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

4. #/opt/ignite/bin/print_manifest | grep -i Memory

Cheers ,
Raj.
" If u think u can , If u think u cannot , - You are always Right . "
Muthukumar_5
Honored Contributor

Re: physical memory

Few ways as,

1. top
2. dmesg | grep -i phys
3. sam -> performance monitor -> system properties -> memory

hth.
Easy to suggest when don't know about the problem!
Mahesh Kumar Malik
Honored Contributor

Re: physical memory

Hi Shiv

1. dmesg |grep PHYSICAL
2. top
3. cstm>map all >info > il

are few ways to get server physical memory

Regards
Mahesh
yut
Advisor

Re: physical memory

more /var/adm/syslog/syslog.log | grep Physical

or you can use sam to find out the physical memory --> Performance Monitors --> System Properties


-yut-