About 50 results
Open links in new tab
  1. How to check which process is using most memory

    142 This will show you top 10 process that using the most memory: ps aux --sort=-%mem | head Using top: when you open top, pressing m will sort processes based on memory usage. But this will not …

  2. Correctly determining memory usage in Linux

    smem is a tool that can give numerous reports on memory usage on Linux systems. Unlike existing tools, smem can report proportional set size (PSS), which is a more meaningful representation of the …

  3. Command to display Memory usage, Disk Usage and CPU Load

    Jan 7, 2015 · I want to display Memory usage, Disk Usage and CPU Load in the following format: Memory Usage: 33/512MB (6%) Disk usage: 4.2/20GB (23%) CPU Load: 0.01 How do I do that?

  4. How to monitor CPU/memory usage of a single process?

    Aug 17, 2010 · I would like to monitor one process's memory / cpu usage in real time. Similar to top but targeted at only one process, preferably with a history graph of some sort.

  5. How to display `top` results sorted by memory usage in real time?

    Sep 30, 2015 · 9 The original question seems to have been for a Mac, but for anyone else stumbling across this answer, on Red Hat Linux (and many others), 'top -m' starts top with results sorted by …

  6. arch linux - Very high memory usage with nothing running - Unix

    Mar 3, 2021 · I'm running Arch Linux with GNOME 3.38 X11, and have an issue where I'm at idle (after using the computer for a while and closing everything) using around 8-9GB of RAM. I know about …

  7. How to get memory used (RAM used) using Linux command?

    The actual memory usage is the 2nd line (used: 20746840) but part of that memory use is buffers and cache which are just to speed up response times on your system. The third line (used: 5779440) …

  8. Show absolute memory usage for each process with `top`

    Aug 19, 2021 · By default, top will show, for each process, the fraction of physical memory used by that process: top - 12:39:34 up 87 days, 18:25, 3 users, load average: 4.73, 4.89, 4.23 Tasks: 255 total, 2

  9. How to find which processes are taking all the memory?

    Under Linux, simply press M to sort by physical memory usage (RES column). Under *BSD, run top -o res or top -o size. But htop is a lot nicer and doesn't even consume more memory than top (however …

  10. Why does my system use more RAM after an hour of usage?

    Jun 14, 2019 · The Linux kernel has advanced memory management features and tries to avoid putting a burden on the bottleneck in your system, your hard drive/SSD. It tries to cache files in memory.