- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Swap information
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
05-09-2001 01:15 PM
05-09-2001 01:15 PM
This is the swap information for one of my boxes
----------------------------------------------
gold:/ # swapinfo -t
Kb Kb Kb PCT START/ Kb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 1703936 15044 1688892 1% 0 - 1 /dev/vg00/lvol2
dev 512000 15084 496916 3% 0 - 1 /dev/vg01/swap2
reserve - 1992356 -1992356
total 2215936 2022484 193452 91% - 0 -
----------------------------------------------
What do 91% mean, and is it posible for me to find the processes that reserved this memory. I don't have GlancePlus!
Thanks,
Troy.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2001 01:33 PM
05-09-2001 01:33 PM
Re: Swap information
Here's an easy way to rank processes by the amount of memory (in 1024 byte chunks) they're using:
# UNIX95= ps -e -o "user,vsz,pid,ppid,args" | sort -rnk2 | more
'top' is useful too.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2001 01:45 PM
05-09-2001 01:45 PM
Re: Swap information
I tried this command but it gave mi that "-o" is illegal option? About top, I should look at column size, right?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2001 01:49 PM
05-09-2001 01:49 PM
Re: Swap information
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2001 01:55 PM
05-09-2001 01:55 PM
SolutionCut-and-paste exactly what I provided. There is no semicolon (;) after 'UNIX95=', only a space and then the 'ps', etc. This is setting the environmental variable "UNIX95" only for the command line on which it appears. This is all we need to tell 'ps' to run with the POSIX (UNIX95) option "on". See 'man ps' for more information.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2001 01:55 PM
05-09-2001 01:55 PM
Re: Swap information
Manoj Srivastava