Forrest logo
back to the atop tool

atop:tldr:61044

atop: Start and display memory consumption for each process.
$ atop -m
try on your machine

The command "atop -m" is used to activate the memory view in atop, a Linux task resource monitor.

When you run "atop -m," it will display various memory-related information such as memory usage, utilization, and statistics for individual processes and memory regions. This information can help you understand how memory is being utilized by different processes on your system.

Here's an overview of the memory-related information you can expect to see using this command:

  1. Process-specific memory usage: This section shows memory usage for each running process, including the amount of physical and virtual memory used, resident set size (RSS), and shared memory usage.

  2. Global memory usage: This section provides an overview of memory utilization on the system, including the total amount of memory, free memory, used memory, and memory utilization percentage.

  3. Memory statistics: This section displays memory statistical data, including the number of pages allocated, faults, pageins, pageouts, and various other memory-related events.

By running "atop -m," you can get a real-time snapshot of memory consumption and identify any processes or memory regions that might be causing high memory usage.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the atop tool