TOP command memory usage

The standard (command-line) program for checking cpu/memory usage for processes is top there is also a slightly more feature-full htop however on a lot of systems its bound to top anyway (same way bash is almost always bound to sh on most modern linux systems). There are also various GUI wrappers for top/htop available

After opening top, clicking M will sort by memory usage.

EDIT - 4-12 For clarity I decided to expand on the sorting. Here is a typical top window when run from the terminal shell, this is already sorted by %MEM

enter image description here

The column that interests you most is %MEM which will give you the share of total available memory used by that process. VIRT gives the virtual memory footprint of the process, of which only RES amount is currently in physical memory (the rest is swapped out, and not currently shown on the table)

In order to sort by a column you hit F (shift-F) and the screen will change to the following

enter image description here

as you can see, hitting n will select sort by memory percentage (hit enter to return back to the table view). (There is a legacy shortcut Shift-m that will toggle sort by memory when hit on the table view) You can use < and > in the table view (shift - , and shift-.) to cycle the column that is sorted.

At the table view, hitting lowercase m will toggle the memory summary view. enter image description here

Note: I played around with sorting columns so the columns are shuffled from the first image.

Like a lot of unix/linux command line utilities there are many little tricks and things and hidden features - top is a very powerful tool. For instance, you can show multiple tables at the same time (say the top 5 instead of top 20 but for 4-5 different parameters)- how? I don't know, but I accidentally got to that when taking the screenshots. A full chapter of a good book on *nix can be devoted to top, so the summary above is just a small primer to get what you need to know about your processes.

Tags:

Linux

Suse

Top