Operating System - HP-UX
1748150 Members
3675 Online
108758 Solutions
New Discussion

Re: 11.31 display physical memory configuration? DIMM quantity and sizes

 
SOLVED
Go to solution
ww140245
Occasional Advisor

11.31 display physical memory configuration? DIMM quantity and sizes

Hello, I have several rx6600's here and I'd like to display the capacity and quantity of installed memory DIMMS.  I want to see also how many free DIMM slots remain.  Is there a way to do this via MP console or HP-UX commands?  That would be a lot more convenient than powering off the machine to physically inspect.

 

Thank you

3 REPLIES 3
Patrick Wallek
Honored Contributor
Solution

Re: 11.31 display physical memory configuration? DIMM quantity and sizes

See if the following will work for you:

 

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

 

Here is example output from one of my systems:

 

root /root # echo "selclass qualifier memory ; wait ; infolog" | cstm
Running Command File (/usr/sbin/stm/ui/config/.stmrc).

-- Information --
Support Tools Manager


Version D.13.00

Product Number B4708AA

(C) Copyright Hewlett Packard Co. 1995-2012
All Rights Reserved

Use of this program is subject to the licensing restrictions described
in "Help-->On Version".  HP shall not be liable for any damages resulting
from misuse or unauthorized use of this program.

cstm>selclass qualifier memory ; wait ; infolog
-- Converting a (2456) byte raw log file to text. --
Preparing the Information Tool Log for IPF_MEMORY on path memory File ...

.... atl6  :  10.11.10.210 ....

-- Information Tool Log for IPF_MEMORY on path memory --

Log creation time: Sun Dec 30 01:01:32 2012

Hardware path: memory


Basic Memory Description

   Module Type: MEMORY
   Page Size: 4096 Bytes
   Total Physical Memory: N/A
   Total Configured Memory: 8192 MB
   Total Deconfigured Memory: N/A

Memory Board Inventory

   DIMM Location          Size(MB)     DIMM Location          Size(MB)
   --------------------   --------     --------------------   --------
   Ext 0 DIMM 0A          2048         Ext 0 DIMM 0B          2048
   Ext 0 DIMM 1A          2048         Ext 0 DIMM 1B          2048
   Ext 0 DIMM 2A          ----         Ext 0 DIMM 2B          ----
   Ext 0 DIMM 3A          ----         Ext 0 DIMM 3B          ----

   Ext 0 Total: 8192 (MB)

   ===========================================================================

Memory Error Log Summary

   The memory error log is empty.

Page Deallocation Table (PDT)

   The Page Deallocation Table is empty.

   PDT Entries Used: 0
   PDT Entries Free: 100
   PDT Total Size: 100

-- Information Tool Log for IPF_MEMORY on path memory --
View   - To View the file.
Print  - To Print the file.
SaveAs - To Save the file.
Enter Done, Help, Print, SaveAs, or View: [Done] #.

 

ww140245
Occasional Advisor

Re: 11.31 display physical memory configuration? DIMM quantity and sizes

Never mind, I found the answer with a bit of searching:

 

/sbin/init.d/diagnostic start

 

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

 

 

ww140245
Occasional Advisor

Re: 11.31 display physical memory configuration? DIMM quantity and sizes

Oops, Patrick beat me to it!  Thank you