up vote 23 down vote favorite
16
share [g+] share [fb]

Under Linux, how do I find out which process is using the swap space more?

Any scripts/links appreciated..

link|improve this question

57% accept rate
feedback

6 Answers

up vote 34 down vote accepted

Run top then press 'O' (capital letter o) followed by 'p' then 'enter'. Now processes should be sorted by their swap usage.

link|improve this answer
24  
From the docs, the SWAP column in top seems to just show how much swap would be necessary if the entire process was swapped out, rather than how much of the process is actually swapped at present. From what I can tell after a short search, there is no way to determine how much of each process is swapped out at the moment. The author of htop refuses to put in such a column because of this (I do see CNSWAP and NSWAP columns, but they don't seem to do anything on my machine): htop.sourceforge.net/index.php?page=faq – yukondude Nov 11 '09 at 19:25
feedback

The best script I found is on this page : http://northernmost.org/blog/find-out-what-is-using-your-swap/

link|improve this answer
Very useful link, thanks very much! – Jon Dec 16 '11 at 0:32
feedback

It's not entirely clear if you mean you want to find the process who has most pages swapped out or process who caused most pages to be swapped out.

For the first you may run top and order by swap (press 'Op'), for the latter you can run vmstat and look for non-zero entries for 'so'.

link|improve this answer
feedback

I don't know of any direct answer as how to find exactly what process is using the swap space, however, this link may be helpful. Another good one is over here

Also, use a good tool like htop to see which processes are using a lot of memory and how much swap overall is being used.

link|improve this answer
feedback

I suppose you could get a good guess by running top and looking for active processes using a lot of memory. Doing this programatically is harder---just look at the endless debates about the Linux OOM killer heuristics.

Swapping is a function of having more memory in active use than is installed, so it is usually hard to blame it on a single process. If it is an ongoing problem, the best solution is to install more memory, or make other systemic changes.

link|improve this answer
feedback

On MacOSX, you run top command as well but need to type "o" then "vsize" then ENTER.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.