- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Memory installed?
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
04-13-2000 06:16 AM
04-13-2000 06:16 AM
Memory installed?
a HP-UX box that is operational (short of rebooting it)?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2000 06:30 AM
04-13-2000 06:30 AM
Re: Memory installed?
Look under Memory Information.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-13-2000 04:26 PM
04-13-2000 04:26 PM
Re: Memory installed?
/var/adm/syslog/syslog.log file.
So an easy way to check for the memory is:
grep Physical /var/adm/syslog/syslog.log
Here is a sample output:
$ grep Physical /var/adm/syslog/syslog.log
Mar 6 16:16:00 hpwin025 vmunix: Physical: 1048576 Kbytes, lockable: 808624
Kbytes, available: 930084 Kbytes
$
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2000 10:11 PM
04-16-2000 10:11 PM
Re: Memory installed?
monitors-->system properties under the memory tab, or, if you have online
diagnostics installed, you can do an information query on the memory.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-08-2000 09:28 AM
05-08-2000 09:28 AM
Re: Memory installed?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2000 05:58 AM
05-17-2000 05:58 AM
Re: Memory installed?
phys_mem.c
----------
#include
#include
#include
main()
{
struct pst_static pst;
if (pstat_getstatic(&pst, sizeof(pst), (size_t)1, 0) != -1)
(void)printf("Physical Memory is %d bytesn",
pst.page_size * pst.physical_memory);
else
perror("pstat_getstatic");
}
To compile do :-
make phys_mem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2000 06:59 AM
05-17-2000 06:59 AM
Re: Memory installed?
Navigating through the X version is easier to me.
Start either one. In mstm cursor to the MEMORY line or highlight the Memory icon on the xstm version.
On the menu bar go into Tools and then Information, then Run.
It will give you a report on the memory and tell you how many of what size DIMM's you have and the total.
It also tells you how your slots are populated so you can plan upgrades. I've seen people buy memory only to find out they do not have any available slots or the wrong size DIMM's to correctly interleave.