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.
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统计工具如iostat, nmon等大多数是只能统计到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
```