- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- memeory usage of a process
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
04-09-2006 07:54 PM
04-09-2006 07:54 PM
memeory usage of a process
I need to find out the memory usage of a background process in HP-11 server. Could you please tell me a method to find the memory usage of a process.
Regards
Amith
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2006 08:10 PM
04-09-2006 08:10 PM
Re: memeory usage of a process
If you would like a quick list of your memory usage, you could use
# UNIX95= ps -e -o ruser,vsz,pid,args | sort -rnk2
Best regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2006 09:36 PM
04-09-2006 09:36 PM
Re: memeory usage of a process
The output of the command mentioned by you is
amith 692 7193 /vol1/216-569a/bmpc/bin/dmctl.native
where dmctl.native is my process and 7193 is the process id.
Whereas below mentioned is the same process started by another user
meenam 1052 23113 /lantst/testing/720-720a/bmpc/bin/dmctl.native
where process id is 23113.
In this which is the memory usage of the process and why the difference in the two cases.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2006 09:38 PM
04-09-2006 09:38 PM
Re: memeory usage of a process
You can use this command as well,
UNIX95=1 ps -ef -o vsz= -o pid= -o comm= |sort -rnk1 | awk 'BEGIN{printf "Memory PID Process\n";}{ printf "%-3.2f MB %-5d %-15s\n",$1/1024,$2,$3; }'
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2006 12:29 AM
04-10-2006 12:29 AM
Re: memeory usage of a process
It can track memory usage for a process in particular.
Regards,
Sebastian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2006 10:14 PM
04-10-2006 10:14 PM
Re: memeory usage of a process
What i need is to specify my client what is the memory usage of a process. This is for him to configure the program based on his RAM features. So how can i find that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2006 10:16 PM
04-10-2006 10:16 PM
Re: memeory usage of a process
What i need is to specify my client what is the memory usage of a process. This is for him to configure the program based on his RAM features. So how can i find that.
Will the TSS/RSS value be the total memory usage of the program.