$ cat /proc/diskstats sda sda1 sda2 gg- gg- gg- 主号 次号 名称 成功读 合并读 扇区读 读时间 每一列的含义分别为: 第一列为 设备号 (number of issued reads. This is the total number of reads completed successfully.) 第二列为 次设备号 (number of reads merged) 第三列为 设备名称 (number of sectors read.…
系统IO:Linux系统提供给应用程序操作文件的接口 Everything is a file ,in Unix 在Unix/Linux下,万物皆文件 打开文件函数原型: #include<sys/types.h> #include<sys/stat.h> #include<fcntl.h> int open(const char *path, int flag); int open(const char *path, int flag, mode_t mode);…
1. vmstat 能够展现给定时间间隔的server的状态值,包含server的CPU使用率,内存使用,虚拟内存交换情况,IO读写情况 vmstat 2 10 2: 每隔2s 10 : 统计10次 2. res procs ---–memory---- -swap– -–io-- -system– --cpu-– r b swpd free buff cache si so bi bo in cs us sy id wa st 1 5 0 173436 591640 8272204 0 0 6…