语法
vmstat命令的含义为显示虚拟内存状态(“Virtual Memory Statistics”),但是它可以报告关于进程、内存、I/O等系统整体运行状态。
语法格式:vmstat [参数]
参数
image.png显示活动内页:
[root@linuxcool ~]# vmstat -a
显示启动后创建的进程总数:
[root@linuxcool ~]# vmstat -f
显示slab信息:
[root@linuxcool ~]# vmstat -m
头信息仅显示一次:
[root@linuxcool ~]# vmstat -n
以表格方式显示事件计数器和内存状态:
[root@linuxcool ~]# vmstat -s
显示指定的硬盘分区状态:
[root@linuxcool ~]# vmstat -p /dev/sda1
指定状态信息刷新的时间间隔为1秒:
[root@linuxcool ~]# vmstat 1
网友评论