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
06-23-2006 01:39 AM
06-23-2006 01:39 AM
memory
I need some help !! .. Anyone nows how i see all the used memory, the free memory, in the hp-ux 11i ..
Best regardes
Note urgent ...
Thanks ..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2006 01:43 AM
06-23-2006 01:43 AM
Re: memory
If you have glance installed, use
glance -m
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2006 01:43 AM
06-23-2006 01:43 AM
Re: memory
top
and look for the line labeled Memory:. Also, if you have glance installed you can run that and look at the memory report.
Phil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2006 01:46 AM
06-23-2006 01:46 AM
Re: memory
You can also check with vmstat, do a man vmstat.
If you want to check your swap:
swapinfo -tam.
Darrel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2006 01:46 AM
06-23-2006 01:46 AM
Re: memory
vmstat 1 5
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2006 01:50 AM
06-23-2006 01:50 AM
Re: memory
But i have the TOP, in mean the thosen't give me the information that i need only report the process that consume more memory ..
And i don't have the Grace ..
I need to now the total of used memory ..
Any more sugestions ???
Thanks !! ..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2006 01:51 AM
06-23-2006 01:51 AM
Re: memory
You mean glance right? There is a 60 day free trial on the Application CD.
also:
http://www.hpux.ws/system.perf.sh
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2006 01:54 AM
06-23-2006 01:54 AM
Re: memory
UNIX95= ps -e -o 'vsz' | awk '{t+=$1} END {printf "%d kbytes\n",t}'
This sums memory used by the core image across all processes. It may include virtual memory.
To see the top memory users:
UNIX95= ps -e -o "pid,user,vsz,args" | sort -nr -k 3 | more
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2006 01:56 AM
06-23-2006 01:56 AM
Re: memory
Thanks a lot anyway ..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2006 03:12 AM
06-23-2006 03:12 AM
Re: memory
Check this link, lots of tools regarding memory management:
Check this link,
ftp://eh:spear9@hprc.external.hp.com/memory.htm
Darrel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2006 03:18 AM
06-23-2006 03:18 AM
Re: memory
Thanks for the good help ..