- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Simple question about RAM checking
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-15-2000 10:14 AM
09-15-2000 10:14 AM
Simple question about RAM checking
" If I don't use "glance", which hp-ux command can be used to check memory usage?"
" After that, which command I can use to get the process id that use the most ram?"
Thank you very much!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2000 10:18 AM
09-15-2000 10:18 AM
Re: Simple question about RAM checking
# swapinfo -ta
Also vmstat and sar can be very useful. See the man pages for both.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2000 10:26 AM
09-15-2000 10:26 AM
Re: Simple question about RAM checking
Oh, almost forgot, 'top' is good for looking at indivicual processes' memory. See man pages for top.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2000 10:26 AM
09-15-2000 10:26 AM
Re: Simple question about RAM checking
export UNIX95=1
ps -e -o "user,pid,ppid,sz,vsz,comm" | sort -rn +4|more
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2000 11:01 AM
09-15-2000 11:01 AM
Re: Simple question about RAM checking
Good call! Works like a charm, and with Linux too. I was not very aware of UNIX95 prior to this (heard of it), but it suggests that a considerable amount of portability issues can be easily dealt with. Thanks again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-15-2000 11:44 AM
09-15-2000 11:44 AM
Re: Simple question about RAM checking
I used to like the old Berkley flags (ps gv, etc.) on AIX and was frustrated when I could not get the same functionaliy on hp. I had never tried it on linux -- glad to know it unctions there, too.