- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to check installed memory
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
Discussions
Discussions
Discussions
Forums
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
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
тАО10-04-2006 04:33 PM
тАО10-04-2006 04:33 PM
how to check installed memory
how can we check installed physical memory and
processor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 04:37 PM
тАО10-04-2006 04:37 PM
Re: how to check installed memory
To check the install memory you can use the command
dmesg
At the end of this command output it'll show memory Physical size- This is installed memory in system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 04:53 PM
тАО10-04-2006 04:53 PM
Re: how to check installed memory
this returns the memory in MB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 05:01 PM
тАО10-04-2006 05:01 PM
Re: how to check installed memory
you can use Glance and go to the memory report by pressing "M". The values are displayed as such:
Total VM : 3.55gb Sys Mem : 1.22gb User Mem: 2.38gb Phys Mem: 8.00gb
Active VM: 1.73gb Buf Cache: 819.2mb Free Mem: 3.60gb Page 1 of 1
the "Phys mem" value should give you the answer.
hope this helps!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 05:02 PM
тАО10-04-2006 05:02 PM
Re: how to check installed memory
you can use Glance and go to the memory report by pressing "m". The values are displayed as such:
Total VM : 3.55gb Sys Mem : 1.22gb User Mem: 2.38gb Phys Mem: 8.00gb
Active VM: 1.73gb Buf Cache: 819.2mb Free Mem: 3.60gb Page 1 of 1
the "Phys mem" value should give you the answer.
hope this helps!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 05:10 PM
тАО10-04-2006 05:10 PM
Re: how to check installed memory
out put of cstm and getmem is below,
cstm>info
Module Type: MEMORY
Total Configured Memory : 12288 MB
Page Size: 4096 Bytes
# /usr/sam/lbin/getmem
40
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 05:45 PM
тАО10-04-2006 05:45 PM
Re: how to check installed memory
For processor and memory(if ignite-UX installed)
you can use this command
print_manifest
You can see the o/p like this
System Hardware
Model: 9000/800/rp8420
Main Memory: 8165 MB
Processors: 4
OS mode: 64 bit_manifest
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 06:03 PM
тАО10-04-2006 06:03 PM
Re: how to check installed memory
# echo 'phys_mem_pages/D' | adb -k /stand/vmunix /dev/kmem
...the above will give you the no. of 4K pages on the system. Multiply the above output with 4096 to get the total bytes of memory installed on your system.
Num of CPUs...
# echo "runningprocs/D" | adb -k /stand/vmunix /dev/mem
~hope it helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 06:07 PM
тАО10-04-2006 06:07 PM
Re: how to check installed memory
echo "map selall info;wait infolog" | cstm > /tmp/cstm.txt
We don't mind if you assign the points to the responses you get If they really helps. I could see in ur profile that no points have been assigned to any of the responses...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 06:18 PM
тАО10-04-2006 06:18 PM
Re: how to check installed memory
you can also try this C program.
# vi phys_mem.c
static char SCCSid[] = "@(#)phys_mem 1.1";
#include
void main() {
struct pst_static stat_buf;
struct pst_dynamic dyn_buf;
pstat(PSTAT_STATIC,&stat_buf,sizeof(stat_buf),0,0);
pstat(PSTAT_DYNAMIC,&dyn_buf,sizeof(dyn_buf),0,0);
printf(" Physical memory = %ld MB\n",stat_buf.physical_memory/256);
printf(" Virtual memory = %ld MB\n",dyn_buf.psd_vm/256);
printf("Active Virtual memory = %ld MB\n",dyn_buf.psd_avm/256);
printf(" Real memory = %ld MB\n",dyn_buf.psd_rm/256);
printf(" Active Real memory = %ld MB\n",dyn_buf.psd_arm/256);
printf(" Free Memory = %ld MB\n",dyn_buf.psd_free/256);
return; }
~
~
~
~
"phys_mem.c" [New file] 19 lines, 649 characters
# cc -o phys_mem phys_mem.c
# ./phys_mem
Physical memory = 7168 MB
Virtual memory = 5944 MB
Active Virtual memory = 2769 MB
Real memory = 4457 MB
Active Real memory = 1616 MB
Free Memory = 758 MB
#
/usr/sam/lbin/getmem
This did not seem to work for me. We have 7168MB and getmem reported 40.
hope this helps!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-04-2006 08:59 PM
тАО10-04-2006 08:59 PM
Re: how to check installed memory
glance, pring_manifest, dmesg