Under Linux, how do I find out which process is using the swap space more?
Any scripts/links appreciated..
|
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Run top then press 'O' (capital letter o) followed by 'p' then 'enter'. Now processes should be sorted by their swap usage. Here is an update as my original answer does not provide an exact answer to the problem as pointed out in the comments. From the htop FAQ:
|
|||||||||||||||
|
|
The best script I found is on this page : http://northernmost.org/blog/find-out-what-is-using-your-swap/ Here's one variant of the script (you need to run this as
|
|||||||||||||||
|
|
Here's another variant of the script (you need to run this as root to get exact results):
|
|||||
|
|
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 |
|||
|
|
|
The top command also contains a field to display the number of page faults for a process. The process with maximum page faults would be the process which is swapping most. For long running daemons it might be that they incur large number of page faults at the beginning and the number does not increase later on. So we need to observe whether the page faults is increasing. |
|||
|
|
|
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. |
|||
|
|
|
I suppose you could get a good guess by running 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. |
||||
|
|
|
On MacOSX, you run top command as well but need to type "o" then "vsize" then ENTER. |
|||
|
|