How to have linux top command show memory summary in megabytes not kilobytes

51,484

Solution 1

I know I'm veeery late on this but I guess you used:

top -M

from the tom man page on RHEL 5:

-M : Detect memory units
Show memory units (k/M/G) and display floating point values in the memory summary.

Solution 2

On linux you can use e key to change task memory scale, ranging from bytes to petabytes. When you have selected what you like, press W (shift + w) to save changes to ~/.toprc.

Solution 3

Typing capital 'E' cycles through KiB, MiB, GiB, TiB, PiB and EiB.

Solution 4

Let me amplify and study bindbn's response above. The source to top in the procps package, lines 3131 and 3134, show that the output will go through the scale_num() function defined on line 761. What I read in the scale_num() function says that it will favor precision over beauty. If the available real-estate only allows for human-readable, then so be it, but its default is to show it in KB.

So, what I think happened is that you saw a few processes with MB in their memory consumption (resident or shared) and tricked yourself when you opened it back up. Either that, or you were using a different tool.

If you are satisfied that somehow, you got twisted around, then please mark a reply as The Answer so that this question can come off the Unanswered list. Thanks.

Just to convince yourself, get the source RPM to the package and see if they applied any patches to it. You would probably have to install the SRPM and look at the spec file to get the name of any patch files they used. Learn how to build an RPM (a handy skill) and go look at the patched source of top.c, if it has been patched at all. Compare the tree with the link I provided above and see if there is a difference. Note that going through this may not be trivial.

Solution 5

"top -M M" is the command to get the memory part in megabytes. Change last M to K for kilobytes

"top -n 1 d 2" will repeat only once

Share:
51,484

Related videos on Youtube

Michael Irey
Author by

Michael Irey

Updated on September 17, 2022

Comments

  • Michael Irey
    Michael Irey over 1 year

    Redhat EL5

    I had my top configured the just the way I like showing the memory summary and swap summary in MB. I had to close my shell and then when I re-opened it, it is back showing in (default ?) kilobytes.

    I have scoured google, and top help and man the page. I can not seem to find the display in MB option. Although, I did find many other somewhat strange options...

    If anyone knows I sure would be grateful.

    Thanks!

    • Prix
      Prix over 13 years
      Are you sure it was TOP and not a clone with more options ? there is nothing on TOP's man page saying anything about it being able to display the data in human-readable form.
  • Michael Irey
    Michael Irey over 13 years
    I was using the standard top that comes with Redhat Enterprise Linux 5. Honest, somehow I had it set to display in MB. But thanks for viewing the source code. procps version 3.2.7
  • Dan Pritts
    Dan Pritts almost 11 years
    so much for searching the man page for "kilo" and "mega" to try to find this info.
  • Mr Lou
    Mr Lou almost 11 years
    tom -M not work for ubuntu,just for centos
  • sivann
    sivann over 9 years
    neither fedora 20
  • The Onin
    The Onin about 5 years
    Great solution and answer.