- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SysteM process Status
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
09-27-2006 09:11 PM
09-27-2006 09:11 PM
How to find the list Process that utilises most memory.
and how long the process are there in the sleeping state.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2006 09:27 PM
09-27-2006 09:27 PM
Re: SysteM process Status
Do you have glance installed on your system?
glance can tell you a lot, CPU, Memory, system calls, Process WAIT ....
Regards,
Yang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2006 09:31 PM
09-27-2006 09:31 PM
Re: SysteM process Status
You can use 'top' command to list top processes on the system.
Regards,
Sudhakaran.K
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2006 09:32 PM
09-27-2006 09:32 PM
Re: SysteM process Status
Regards,
Sudhakaran.K
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2006 10:46 PM
09-27-2006 10:46 PM
SolutionTop will sort the output as per CPU % usage and not memory usage. A simpler method could be
UNIX95= ps -e -o "pid,user,sz,args" | sort -nr -k 3 | more
Note there is no space between UNIX95 and the = sign, whereas there is a space between = and ps.
The 3rd column is memory size in pages. 1 page = 4kb.
But you need to understand one thing is that the memory shown includes shared memory area and hence will be shown by all the processes using the shared memory not just one. e.g. if you have Oracle database - all the ora processes will show memory size including the shared memory used in terms of SGA by the Oracle processes. But this will give you a fair amount of idea which processes are using top memory.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2006 11:49 PM
09-27-2006 11:49 PM
Re: SysteM process Status
# UNIX95= ps -e -o pid= -o user= -o vsz= -o args= | sort -n -k3
'-o vsz' shows memory used in KB. Specifying the columns as separate options to 'ps' followed by '=' turns the column headers off.
PCS