Operating System - HP-UX
1753975 Members
7507 Online
108811 Solutions
New Discussion юеВ

finding RAM size in 9000/800/rp7420

 
GPrakash
Advisor

finding RAM size in 9000/800/rp7420

I need to findout RAM size.

dmesg |grep "Physical" will give output, but sometimes it will not..

any other command??
7 REPLIES 7
Aneesh Mohan
Honored Contributor

Re: finding RAM size in 9000/800/rp7420


Hi,

# echo "phys_mem_pages/D" |adb /stand/vmunix /dev/kmem
phys_mem_pages:
phys_mem_pages: 524288

The Value "524288" is in pages ,multiply by 4096 you will get the RAM size.

In my case it is 524288 * 4096 = 2147483648 or 2048 MB

Regards,
Aneesh
Turgay Cavdar
Honored Contributor

Re: finding RAM size in 9000/800/rp7420

/opt/ignite/bin/print_manifest

or

hp-ux 11.23# echo phys_mem_pages/2d | adb /stand/vmunix /dev/kmem value in page x 4096)

hp-ux 11.11# echo phys_mem_pages/D | adb -k /stand/vmunix /dev/mem (value in page x 4096)
Murugan07
New Member

Re: finding RAM size in 9000/800/rp7420

Hi,

Try using below commands.

#/opt/ignite/bin/print_manifest
#cstm

and then from cstm

cstm>sel all
cstm>infolog
likid0
Honored Contributor

Re: finding RAM size in 9000/800/rp7420

kmeminfo is a great contrib application, it's a must you can download it from:

ftp://eh:spear9@hprc.external.hp.com/memory.htm
Windows?, no thanks
Ganesan R
Honored Contributor

Re: finding RAM size in 9000/800/rp7420

Hi,

Use the below command.

# echo "selclass qualifier memory;info;wait;infolog" | /usr/sbin/cstm | grep 'Total Configured'
Best wishes,

Ganesh.
Berd
Trusted Contributor

Re: finding RAM size in 9000/800/rp7420

If you have glance, this will also provide a memory report.
GPrakash
Advisor

Re: finding RAM size in 9000/800/rp7420

I got the answer, thanks folks...