- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ps awux / ps -edalf
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-15-2007 03:59 AM
02-15-2007 03:59 AM
I am seeing 99% memory usage, no pages being release and not much processing on the box - approx 120 procs running.
There is 8gb of memory and this is concerning me that something is not configured correctly.
I run ps awux or ps -edalf and calculate the size field, my question is what is the number a representation of in blocks ie is it reporting 512byte blocks or 4k blocks?
Thanks
Chris
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2007 04:16 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2007 04:19 AM
02-15-2007 04:19 AM
Re: ps awux / ps -edalf
PAGESIZE = 4096 (4k)
Thanks James.
Chris.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2007 04:26 AM
02-15-2007 04:26 AM
Re: ps awux / ps -edalf
whats the uptime on this server ?
also check # top 10 and see if any command / process is hanging , some times that can eat up all your memory .
rgds / James
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2007 08:03 AM
02-15-2007 08:03 AM
Re: ps awux / ps -edalf
UNIX95=1 ps -e -o vsz,ruser,pid,args | sort -rn
Now you will quickly see that all the numbers do not come even close to the amount of RAM you have. ps counts local process memory. It knows nothing about what the kernel uses, nor does it count shared memory usage or the buffer cache. If you never tuned your system, the buffer cache is probably 50% of your memory. Note that memory usage is not is an indication of performance so "not much processing" has nothing to do with memory usage.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2007 07:35 PM
02-15-2007 07:35 PM
Re: ps awux / ps -edalf
you are correct Bill, all proc's add to 4.5gb so will check other settings.
Chris.