中文字幕亚洲第一精品|精品国产免费一区二区|久久婷婷五月六月综合版|中文字幕熟妇久久久人妻|久久综合精品国产一区无码|国产成人精品永久免费视频|午夜亚洲国产精品理论片a级|久久精品一区二区三区无码护土

 訪問(wèn)手機(jī)版  

Linux常用命令|Linux培訓(xùn)學(xué)習(xí)|考試認(rèn)證|工資待遇與招聘,認(rèn)準(zhǔn)超級(jí)網(wǎng)工!

招聘|合作 登陸|注冊(cè)

網(wǎng)絡(luò)工程師培訓(xùn)

當(dāng)前位置:網(wǎng)絡(luò)工程師 > 技術(shù)課程 > linux > 熱點(diǎn)關(guān)注 > linux常用命令

Linux 系統(tǒng)常用性能分析命令

時(shí)間:2019-10-01

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

性能分析

vmstat

虛擬內(nèi)存統(tǒng)計(jì)

用法

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

內(nèi)存使用狀況

[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