In today's era of rapid information development, the stability of server systems has attracted more and more attention. As a key part of the server, memory often becomes a bottleneck for system performance issues. In this case, real-time monitoring of memory usage plays a vital role in ensuring system stability and performance. This article will introduce how to monitor memory usage in Linux systems and use some practical commands to understand the running status of the system in real time.
I will be demonstrating on an Ubuntu 18.04 server platform[1], but you should find all commands available in the distribution of your choice. Even better, you don’t need to install anything (as most of these tools are included with Linux systems).
With that said, let’s get to work.
top
I want to start with the most commonly used tools. The top command provides a real-time dynamic view of the running system, it checks the memory usage of each process. This is important because you can easily see multiple examples of the same command consuming different amounts of memory. While you can't see this on a server without a monitor, you've noticed that opening Chrome slows down your system. Run the top command to see that Chrome has multiple processes running (one for each tab – Figure 1).

Figure 1: Multiple Chrome processes appear in the top command.
Chrome isn't the only app showing multiple processes. Do you see Firefox in Figure 1? That's Firefox's main process, and the Web Content process is its open tabs. At the top of the output, you'll see system statistics. On my machine (System76 Leopard Extreme[2]) I have a total of 16GB of available RAM, of which just over 10GB is in use. You can then sort through the list to see what percentage of memory each process is using.
top One of the best places to start is discovering the process ID number (PID) of a service that may have gone out of control. With these PIDs, you can troubleshoot (or kill) problematic tasks.
If you want top to display more friendly memory information, use the command top -o %MEM, which will cause top to sort all processes by the memory used by the process (Figure 2).

Figure 2: Sorting processes by memory usage in top command
Thetop command also gives you real-time updates on how much swap space is being used.
free
However, sometimes, the top command may not meet your needs. You may just want to look at your system's free and used memory. For this, Linux also has the free command. The free command displays:
- Total available and used physical memory
- Total amount of swap memory in the system
- Buffers and caches used by the kernel
In the terminal window, enter the free command. Its output is not real-time, instead you get an instant snapshot of the current free and used memory (Figure 3).

Figure 3: The output of the free command is simple and clear.
Of course, you can make free appear more friendly by adding the -m option, like this: free -m. This will show memory usage in MB (Figure 4).

Figure 4: Free command output in a more readable form.
Of course, if your system is very new, you will want to use the -g option (in GB), such as free -g.
If you need to know the total amount of memory, you can add the -t option, such as: free -mt. This will simply calculate the total amount of memory in each column (Figure 5).

Figure 5: Provides you with free memory columns.
vmstat
Another very convenient tool is vmstat. This particular command is a little trick for reporting virtual memory statistics. The vmstat command will report about:
- process
- Memory
- Pagination
- Blocking IO
- Interrupt
- disk
- CPU
The best way to use vmstat is to use the -s option, such as vmstat -s. This will report the statistics in a single column (which is easier to read than the default report). The vmstat command will provide more information than you need (Figure 6), but more is always better (in this case).

Figure 6: Use the vmstat command to check memory usage.
dmidecode
What if you want to find detailed information about installed system memory? To do this, you can use the dmidecode command. This particular tool is a DMI table decoder, which dumps the contents of your system's DMI tables into a human-readable format. If you're not sure what a DMI table is, it can be used to describe the makeup of a system (and its evolution).
To run the dmidecode command, you need sudo permissions. So enter the command sudo dmidecode -t 17. The output of this command (Figure 7) can be quite long because it displays information for all memory type devices. So if you can't scroll up and down, you may need to send the output of that command to a file, like: sudo dmidecode -t 17> dmi_infoI, or pass it to a less command, like sudo dmidecode | less.

Figure 7: Output of the dmidecode command.
/proc/meminfo
You may be asking yourself: "Where do these commands get this information?" In some cases, they get it from the /proc/meminfo file. Did you guess it? You can read this file directly using the command less /proc/meminfo. By using the less command, you can scroll up and down through long output to find exactly what you need (Figure 8).

Figure 8: Output of less /proc/meminfo command.
What you should know about /proc/meminfo: This is not a real file. In contrast /proc/meminfo is a virtual file that contains real-time dynamic information about the system. In particular, you need to check the following values:
- All memory (MemTotal)
- Free memory (MemFree)
- Available memory (MemAvailable)
- Buffers
- File cache (Cached)
- SwapCached
- All swap areas (SwapTotal)
- Free swap area (SwapFree)
If you want to use /proc/meminfo, you can connect the egrep command to use it: egrep –color’Mem | Cache | Swap’/proc/meminfo. This will produce an easy-to-read list where entries for things like Mem, Cache, and Swap will be colored (Figure 9).

Figure 9: Making /proc/meminfo easier to read.
Whether it is a personal computer or a server system, the use of memory is essential and needs attention during use. This article introduces some practical commands for monitoring and managing memory in Linux systems, which allows us to grasp the running status of the system in real time and effectively avoid system downtime or other failures due to memory problems. Let us deeply understand and master these commands to ensure the safety and performance of the device.
The above is the detailed content of Linux memory monitoring: understand the system running status in real time. For more information, please follow other related articles on the PHP Chinese website!

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6
Visual web development tools

SublimeText3 Chinese version
Chinese version, very easy to use

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.
