In this guide, we will demonstrate various ways to use the “vmstat” command in Linux.
prerequisites:
To perform the steps demonstrated in this guide, you will need the following components:
- Configure the correct Linux system. For testing purposes, consider using a Linux VM.
- Access to non-root users with sudo privileges
- Basic understanding of command line interface
Virtual memory in Linux
RAM, or physical memory, is a limited resource allocated by the operating system to running programs. All programs, including the operating system itself, need to occupy this space.
When memory requirements exceed available memory, the system may crash or a program may request more memory space. In most cases, this situation is undesirable. Hence the concept of virtual memory, which allows the system to store part of the data on the hard disk so that it can be swapped to RAM when needed. In this way, the system can manage memory resources more efficiently, ensuring that programs run normally without crashing due to insufficient memory. The use of virtual memory makes the system face memory requirements
Virtual memory is a technology in computer systems that uses space on a hard drive or solid-state drive to expand the capacity of memory to act as additional memory when needed. Virtual memory is actually a way of using part of your hard drive space as temporary storage so that it can be replenished when the processor needs more memory. In UNIX and Linux operating systems, this technology is called swap space and is used to manage the allocation and exchange of memory resources. Although virtual memory is not real physical memory, it can improve the performance and stability of the system and ensure that the system can handle larger workloads.
The Linux kernel moves blocks of memory to swap space and retrieves them back to RAM when necessary.
Virtual memory is usually slower than physical memory and depends on the performance of the storage device. But under certain hardware settings (such as using NVMe SSD), the performance of virtual memory may be comparable to RAM.
vmstat command
The "vmstat" command is a utility tool for monitoring virtual memory related information. It is available on all Linux systems as part of the "sysstat" package.
The command structure of "vmstat" is as follows:
$vmstat
Basic usage
If run without any parameters, "vmstat" will print system information since the last startup:
$vmstat
The output is divided into six parts:
- procs: Statistics of currently running processes
- r: Number of active processes
- b: Number of sleep processes
- memory: memory usage statistics
- Swpd: Total virtual memory (swap space)
- Free: available swap space
- buff: Amount of swap space used as temporary buffer memory
- Cache: Total cache memory
- swap: Statistics about swap space
- si: exchange rate
- So: swap-out ratio
- io: I/O statistics
- bi: number of blocks received from block device
- bo: Number of blocks sent to the block device
- System: Schedule Statistics
- in: System interrupt count
- cs: context switch rate
- CPU: Various CPU statistics
- United States: CPU time spent on non-kernel processes
- sy: CPU time spent on kernel processes
- id: CPU spends time idle
- wa: The CPU spends time waiting for the I/O operation to complete
- st: CPU time used by the virtual machine
Change display unit
By default, "vmstat" reports memory values in bytes. To change units, use the "-S" flag:
$vmstat-S
Here, "vmstat" prints the value in MB.
There are several memory units available:
- M: 1048576 bytes (2^20 bytes)
- M: 1000000 bytes (1000 kilobytes)
- K: 1024 bytes (1 megabyte)
- k: 1000 bytes (1 byte)
Continuous statistics updates
By default, "vmstat" prints a report once. However, we can instruct "vmstat" to provide continuous reports at specified intervals (in seconds).
The command structure is as follows:
$vmstat
For example, to obtain updated statistics every 2 seconds, the command is as follows:
$vmstat 2
Output will not stop unless manually terminated using "Ctrl C".
Alternatively, we can specify "vmstat" to provide statistics for a specific number of times:
$vmstat
For example, to obtain statistics updated every 2 seconds, the command is as follows:
$vmstat 2 5
Active and inactive memory
Active memory refers to the memory space currently used by the process. On the other hand, inactive memory refers to the memory space allocated to processes that are no longer running.
Using "vmstat" we can check the amount of active and inactive memory being used:
$vmstat—a
Here, the "buff" and "cache" columns are replaced by the "inact" and "active" columns respectively.
Memory and Scheduling
To get a more detailed report on memory and scheduling, use the following command:
$vmstat—s
here:
- Section 1: This section introduces basic system information, such as total physical memory, active/inactive memory, free/buffer/cache memory, etc.
- Section 2: Various CPU Statistics
- Non-good CPU beats: The number of times a high-priority process uses the CPU.
- NICE CPU TICK: The number of times low-priority processes use the CPU.
- System CPU count: The number of times the kernel process uses the CPU.
- Idle CPU ticks: The number of times the CPU is idle.
- IO—wait CPU ticks: The number of times the CPU waits for I/O management.
- IRQ: The number of times the CPU receives interrupt requests.
- softirq: The number of times the CPU receives software interrupt requests.
- Stolen CPU Time: The number of times the VM stole CPU time.
- Section 3: Memory paging status
- Section 4: Event Counter
Post-boot fork
Forks refer to processes spawned from existing processes. To get statistics on fork count, run the following command:
$vmstat-f
Disk and Partition Statistics
The "vmstat" command can also provide information about disk activity. To get a quick summary of disk activity, run the following command:
$vmstat—D
To get a more detailed report of disk activity (including read/write statistics), use the following command instead:
$vmstat—d
here:
- reading
- total: total disk reads
- Mergeed: Total number of group reads
- sectors: Total number of sectors read
- ms: Total time to read data from disk (milliseconds)
- wrote
- total: disk write count
- Mergeed: Total number of group writes
- sectors: Total number of sectors written
- ms: Total time to write to disk (milliseconds)
- io
- cur: Current total disk read/write count
- Seconds: The amount of time (seconds) spent on the ongoing read/write operation
The "vmstat" command can also generate reports for specific disk partitions. To obtain a partition report, use the following command structure:
$vmstat-p
Plate statistics
Board allocation is an efficient object memory allocation mechanism. Slab allocation provides reduced memory fragmentation (caused by memory allocation and deallocation) compared to previous mechanisms.
To check the slab statistics of the system, use the following "vmstat" command:
$sudo vmstat—m
Please note that it requires root access to view statistics.
here:
- Cache: Name of cached data
- Num: The number of active objects in the Num cache
- Total: Total number of objects in a specific cache
- Size: The size of the cache object
- Pages: Memory page count containing cached objects
in conclusion
In this guide, we show various ways of using the "vmstat" command. In addition to virtual memory, "vmstat" can also report disk statistics, forks, shards, etc.
Interested in learning about other system monitoring tools? Learn more about HTOP, KILL, PS and more.
Happy computing!
The above is the detailed content of Linux Vmstat command. 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中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

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

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

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


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

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

Notepad++7.3.1
Easy-to-use and free code editor
