- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- command to find memory size
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
02-18-2001 04:29 AM
02-18-2001 04:29 AM
command to find memory size
Is there any way to find the memory size in my HP workstation ... something other than "dmesg" or SAM. this I would like to out in a script to collect the memory info in all my HP m/cs (which are quite a lot) I believe there is a way using "adb" although I don't recall. Could someone help me out? Also is there any command to find the hardware model and processor type-speed details?
Regards,
Shivakumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2001 12:22 AM
02-19-2001 12:22 AM
Re: command to find memory size
echo "mem_ptr/D"| adb /stand/vmunix /dev/mem
Best regards,
Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2001 01:14 AM
02-19-2001 01:14 AM
Re: command to find memory size
echo 'phys_mem_pages/D'|adb -k /stand/vmunix /dev/kmem.
For 10.20,
echo 'physmem/D'|adb -k /stand/vmunix /dev/kmem
To know model and speed use 'model' command.
/*
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2001 05:46 AM
02-19-2001 05:46 AM
Re: command to find memory size
To obtain the processor speed (MHz):
# echo itick_per_usec/D|adb -k stand/vmunix /dev/kmem|awk 'NR==2 {print}'
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2001 06:21 AM
02-19-2001 06:21 AM
Re: command to find memory size
echo 'phys_mem_pages/D'|adb -k /stand/vmunix /dev/kmem | tail -1 | awk '{print $2/256}'.
For 10.20,
echo 'physmem/D'|adb -k /stand/vmunix /dev/kmem | tail -1 | awk '{print $2/256}'.
To know model 'model' command.
for processor speed
# echo itick_per_usec/D|adb -k stand/vmunix /dev/kmem|tail -1 | awk '{print $2}'
federico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2001 07:20 AM
02-19-2001 07:20 AM
Re: command to find memory size
You will be surprised of howe many kinds there are to get this info.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2001 10:10 AM
02-19-2001 10:10 AM
Re: command to find memory size
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2001 10:28 AM
02-19-2001 10:28 AM
Re: command to find memory size
You can not only find out how much memory, but also the physical board (SIM) sizes and arrangement by using the online diagnostics tool:
# echo "selclass qualifier memory;info;wait;infolog"|cstm > /tmp/meminfo
...JRF...