访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux 系统常用性能分析命令

时间:2019-10-01

常用dos命令大全及其用法_常用dos命令_linux常用命令

性能分析

vmstat

虚拟内存统计

用法

Usage:

vmstat [options] [delay [count]]

Options:

-a, --active active/inactive memory

-f, --forks number of forks since boot

-m, --slabs slabinfo

-n, --one-header do not redisplay header

-s, --stats event counter statistics

-d, --disk disk statistics

-D, --disk-sum summarize disk statistics

-p, --partition <dev> partition specific statistics

-S, --unit <char> define display unit

-w, --wide wide output

-t, --timestamp show timestamp

-h, --help display this help and exit

-V, --version output version information and exit

示例

[root@localhost ~]# vmstat

procs -----------memory---------- ---swap-- -----io---- -system-- ------cpu-----

r b swpd free buff cache si so bi bo in cs us sy id wa st

0 0 71256 92720 0 565120 0 0 1 115 22 36 1 0 99 0 0

linux常用命令_常用dos命令_常用dos命令大全及其用法

其中

free

内存使用状况

[root@localhost ~]# free

total used free shared buff/cache available

Mem: 1849336 1193336 90344 1752 565656 460000

Swap: 2097148 71248 2025900

[root@localhost ~]# free -h

total used free shared buff/cache available

Mem: 1.8G 1.1G 88M 1.7M 552M 449M

Swap: 2.0G 69M 1.9G

[root@localhost ~]# free -m

total used free shared buff/cache available

Mem: 1805 1165 88 1 552 449

Swap: 2047 69 1978

[root@localhost ~]# free -h 2

total used free shared buff/cache available

Mem: 1.8G 1.1G 88M 1.7M 552M 449M