Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2006 01:10 AM
07-11-2006 01:10 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2006 01:17 AM
07-11-2006 01:17 AM
Solutionecho "selclass qualifier memory;info;wait;infolog" | /usr/sbin/cstm
But you can also run
vparstatus
to see all the bound memory
and
vparstatus -A
to see the unbound memory.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2006 01:38 AM
07-11-2006 01:38 AM
Re: vpars
HPUX=/stand/vmunix
MAJORREV=$(uname -r | cut -f2 -d .)
if [ $MAJORREV -ge "11.0" ]
then
MYSYMBOL="phys_mem_pages"
else
MYSYMBOL="physmem"
fi
MYMEM=$(echo "${MYSYMBOL}/D" \
| adb $HPUX /dev/kmem \
| grep "${MYSYMBOL}: *." \
| awk '{printf "%.0f MB\n",$2/256}')
echo $MYMEM
However, in a VPars situation, this will only report what is available to the partition it is run in. As far as I know, none of the usual techniques will show the total memory available to all partitions.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2006 07:32 AM
07-11-2006 07:32 AM
Re: vpars
echo "selclass qualifier memory;info;wait;infolog" |/usr/sbin/cstm
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2006 02:56 PM
07-11-2006 02:56 PM
Re: vpars
and look at the ending for available resource information. if you need to expand memory, read the required increments and if you use SuperDome be find the requirements for "interleaving" memory banks/sizing.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2006 04:08 PM
07-11-2006 04:08 PM
Re: vpars
You can use this command :
# vparstatus -v | grep -e Name -e "Total Memory"
Output will be like this :
-------------------------------
Name: vpar01
Total Memory (MB): 10240
Name: vpar02
Total Memory (MB): 4096
Cheers,
Raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2006 04:30 PM
07-11-2006 04:30 PM
Re: vpars
Basic Memory Description
Module Type: MEMORY
Total Configured Memory : 2048 MB
Page Size: 4096 Bytes
Memory interleaving is supported on this machine and is ON.
Memory Board Inventory
DIMM Slot Size (MB)
--------- ---------
00 512
01 512
02 512
03 512
--------- ---------
System Total (MB): 2048
Asif Sharif
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2006 11:35 PM
07-11-2006 11:35 PM
Re: vpars
Pete - the echo adb portion of your script doesn't work
Tom - vparstatus -A doens't give me total memory
Raj - vparstatus -v | grep -e Name -e "Total Memory" doesn't doesn't give me anything. I have an ia64 hp server rx7620(8-way).
Asif - you are right - this works.
thanks guys . Jacques
thanks to all who participated. Jacques
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2006 08:16 PM
07-16-2006 08:16 PM
Re: vpars
Please assign points.
Regards,
Asif Sharif
Asif Sharif