You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# **iotop**
## 说明
**iotop命令** 是一个用来监视磁盘I/O使用状况的top类工具。iotop具有与top相似的UI其中包括PID、用户、I/O、进程等相关信息
Linux下的IO统计工具如iostatnmon等大多数是只能统计到per设备的读写情况如果你想知道每个进程是如何使用IO的就比较麻烦
使用iotop命令可以很方便的查看
## 安装
```bash
apt-get install iotop # ubuntu
yum install iotop # centos
# 编译安装
wget http://guichaz.free.fr/iotop/files/iotop-0.4.4.tar.gz
tar zxf iotop-0.4.4.tar.gz
python setup.py build
python setup.py install
```
## 选项
```markdown
-o只显示有io操作的进程
-b批量显示无交互主要用作记录到文件
-n NUM显示NUM次主要用于非交互式模式
-d SEC间隔SEC秒显示一次
-p PID监控的进程pid
-u USER监控的进程用户
iotop常用快捷键
1. 左右箭头改变排序方式默认是按IO排序
2. r改变排序顺序
3. o只显示有IO输出的进程
4. p进程/线程的显示方式的切换
5. a显示累积使用量
6. q退出
```
## 实例
```bash
```