- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How much RAM installed on Itanium?
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
12-13-2004 12:46 AM
12-13-2004 12:46 AM
on PA-RISC systems I was able to find out
about the installed RAM with
echo phys_mem_pages/D | \
adb64 -k /stand/vmunix /dev/kmem
Unfortunately, this doesnt' work on my
Itanium (11.23) system,
using the adb -o option (backward
compatibility mode) :
echo phys_mem_pages/D | \
adb -o /stand/vmunix /dev/kmem
phys_mem_pages:
phys_mem_pages: 0
I know that the machine doesn't have
much RAM, but 0 (zero) pages
doesn't look completely correct ... :)
(In reality, it has 1 GB)
Can someone help me with the correct
adb syntax (or give me a hint which tool
to use instead) ?
TIA,
Klaus Claassen
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 12:48 AM
12-13-2004 12:48 AM
Re: How much RAM installed on Itanium?
You can use sam --> performance monitor --> system informations --> memory
will be also used to find RAM size.
HTH.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 12:54 AM
12-13-2004 12:54 AM
Re: How much RAM installed on Itanium?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 01:01 AM
12-13-2004 01:01 AM
Re: How much RAM installed on Itanium?
# dmesg | grep Physical
This will display the RAM in your system.
Hope that helps,
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 01:02 AM
12-13-2004 01:02 AM
Re: How much RAM installed on Itanium?
use command:
/usr/contrib/bin/machinfo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-13-2004 02:36 AM
12-13-2004 02:36 AM
Re: How much RAM installed on Itanium?
thanks for the immediate responses (the
fastest reply arrived after 2 minutes) !
For me, the machinfo and the
print_manifest tips are most valuable,
but also information about
sam->Performance Monitors -> System Properties
is interesting.
Since the buffer for system error messages is small, dmesg is only helpful on systems which have been rebooted recently.
Regards,
Klaus
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-14-2004 11:28 PM
12-14-2004 11:28 PM
SolutionThe adb command did not work as the variable is 8 bytes long and the D format prints only 4 bytes.
In this case it is better to use adb without the -o option. The following command will give you the output you want:
echo phys_mem_pages/jd|adb /stand/vmunix /dev/kmem
Regards,
Lal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-15-2004 02:01 AM
12-15-2004 02:01 AM
Re: How much RAM installed on Itanium?
try this for a board inventory if STM is installed:
echo "selclass qualifier memory;info;wait;infolog" | cstm > /tmp/meminfo
more /tmp/meminfo
Josh