Operating System - HP-UX
1753802 Members
8019 Online
108805 Solutions
New Discussion юеВ

Re: How to check RAM size on HPUX 11 box

 
SOLVED
Go to solution
Pinkal
Occasional Contributor

How to check RAM size on HPUX 11 box

Box Detail as under

HP-UX kautilya B.11.11 U 9000/800 (tj)

model:9000/800/A500-7X
18 REPLIES 18
Devender Khatana
Honored Contributor
Solution

Re: How to check RAM size on HPUX 11 box

Hi,

#dmesg |grep Physical

HTH,
Devender
Impossible itself mentions "I m possible"
Yogeeraj_1
Honored Contributor

Re: How to check RAM size on HPUX 11 box

hi,

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

regards
yogeeraj
No person was ever honoured for what he received. Honour has been the reward for what he gave (clavin coolidge)
Tim Nelson
Honored Contributor

Re: How to check RAM size on HPUX 11 box

dmesg

look at Memory section

Memory Information:
physical page size = 4096 bytes, logical page size = 4096 bytes
Physical: 3145728 Kbytes, lockable: 2426332 Kbytes, available: 2790624 Kbytes

Mel Burslan
Honored Contributor

Re: How to check RAM size on HPUX 11 box

echo phys_mem_pages/D | adb -k /stand/vmunix /dev/mem | awk '{print 4096*$2}'

this should give you the amount of physical memory you have on the system.

HTH
________________________________
UNIX because I majored in cryptology...
Devesh Pant_1
Esteemed Contributor

Re: How to check RAM size on HPUX 11 box

Pinkal,
as if all the solutions above were not enough.
Still I will tell you one more way to get the memory size:
Fire up glance
/opt/perf/bin/glance
and press m
you will see all the details.
thanks
DP
Fabio Ettore
Honored Contributor

Re: How to check RAM size on HPUX 11 box

Hi,

try by mstm

select memory and then Tools ---> Information ---> Run

or

REAL_MEM=`echo 'phys_mem_pages/D '| adb -k /stand/vmunix /dev/kmem | tail -1 | awk '{ print $2/256}'`
echo $REAL_MEM

or also

dmesg | grep -i physical

HTH.

Best regards,
Fabio
WISH? IMPROVEMENT!
Pinkal
Occasional Contributor

Re: How to check RAM size on HPUX 11 box

Thanks a lot all of you.

I am able to find the RAM.

Can any one know How to find CPU speed on same machine.

Joseph Loo
Honored Contributor

Re: How to check RAM size on HPUX 11 box

hi,

another method is thru SAM:

sam -> Performance Monitor -> System Properties -> Memory tab

regards.
(p.s. please remember to assign points.)
what you do not see does not mean you should not believe
Thayanidhi
Honored Contributor

Re: How to check RAM size on HPUX 11 box

Hi,

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

Will give the speed in Mhz.

Regds
TT
Attitude (not aptitude) determines altitude.