1833434 Members
3334 Online
110052 Solutions
New Discussion

Re: Memory on 11x boxes

 
SOLVED
Go to solution
Prasad Karpur
Occasional Contributor

Memory on 11x boxes

What is the command to check the memory on a 11.x box?
6 REPLIES 6
RAC_1
Honored Contributor

Re: Memory on 11x boxes

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

echo "memory_installed_in_machine/D"|adb -k /stand/vmunix /dev/kmem
There is no substitute to HARDWORK
Michael Tully
Honored Contributor
Solution

Re: Memory on 11x boxes

There are several:

# dmesg | grep -i phys
# echo "selclass qualifier memory;info;wait;infolog" | cstm
# grep -i phys /var/adm/syslog/syslog.log
Anyone for a Mutiny ?
Robert-Jan Goossens
Honored Contributor

Re: Memory on 11x boxes

Hi,

Check as in test or how much ?

How much
# echo "selclass qualifier memory;info;wait;infolog" | cstm | grep 'Total Configured'

Test fire up stm
# xstm

Regards,
Robert-Jan
Stuart Abramson_2
Honored Contributor

Re: Memory on 11x boxes

There are several:

1. adb:

echo "phys_mem_pages/D" | adb64 -k /stand/vmunix /dev/kmem \
| tail -1 | awk '{print $2/256000 " GB"}'

2. # dmesg | grep -i phys
physical page size = 4096 bytes, logical page size = 4096 bytes
Physical: 12386304 Kbytes, lockable: 9504664 Kbytes, available: 10918860 Kbytes

3. Glance
hit "m" for memory

4. # /usr/contrib/Q4/bin/kmeminfo

shows memory in pages (4096 bytes).

there are probably more ways!
Helen French
Honored Contributor

Re: Memory on 11x boxes

You can also find the memory information from SAM -> performance monitors -> system properties. Also, look at cstm, stm and mstm options for more detailed memory slot information.
Life is a promise, fulfill it!
Alex Ostapenko
Advisor

Re: Memory on 11x boxes

All good suggestions given above. However, be careful with the easiest solutions of examining "dmesg" or "syslog". "dmesg" buffer may have rolled off so the memory info is not available, and "syslog.log" may have been truncated and also not have the info. So I would trust the other methods more even though they're slightly more "complicated".

=:-) Alex