1 | iotop
|
2 | ===
|
3 |
|
4 | 用来监视磁盘I/O使用状况的工具
|
5 |
|
6 | ## 补充说明
|
7 |
|
8 | **iotop命令** 是一个用来监视磁盘I/O使用状况的top类工具。iotop具有与top相似的UI,其中包括PID、用户、I/O、进程等相关信息。Linux下的IO统计工具如iostat,nmon等大多数是只能统计到per设备的读写情况,如果你想知道每个进程是如何使用IO的就比较麻烦,使用iotop命令可以很方便的查看。
|
9 |
|
10 | iotop使用Python语言编写而成,要求Python2.5(及以上版本)和Linux kernel2.6.20(及以上版本)。iotop提供有源代码及rpm包,可从其官方主页下载。
|
11 |
|
12 | ### 安装
|
13 |
|
14 | **Ubuntu**
|
15 |
|
16 | ```shell
|
17 | apt-get install iotop
|
18 | ```
|
19 |
|
20 | **CentOS**
|
21 |
|
22 | ```shell
|
23 | yum install iotop
|
24 | ```
|
25 |
|
26 | **编译安装**
|
27 |
|
28 | ```shell
|
29 | wget http://guichaz.free.fr/iotop/files/iotop-0.4.4.tar.gz
|
30 | tar zxf iotop-0.4.4.tar.gz
|
31 | python setup.py build
|
32 | python setup.py install
|
33 | ```
|
34 |
|
35 | ### 语法
|
36 |
|
37 | ```shell
|
38 | iotop(选项)
|
39 | ```
|
40 |
|
41 | ### 选项
|
42 |
|
43 | ```shell
|
44 | -o:只显示有io操作的进程
|
45 | -b:批量显示,无交互,主要用作记录到文件。
|
46 | -n NUM:显示NUM次,主要用于非交互式模式。
|
47 | -d SEC:间隔SEC秒显示一次。
|
48 | -p PID:监控的进程pid。
|
49 | -u USER:监控的进程用户。
|
50 | ```
|
51 |
|
52 | **iotop常用快捷键:**
|
53 |
|
54 | 1. 左右箭头:改变排序方式,默认是按IO排序。
|
55 | 2. r:改变排序顺序。
|
56 | 3. o:只显示有IO输出的进程。
|
57 | 4. p:进程/线程的显示方式的切换。
|
58 | 5. a:显示累积使用量。
|
59 | 6. q:退出。
|
60 |
|
61 | ### 实例
|
62 |
|
63 | 直接执行iotop就可以看到效果了:
|
64 |
|
65 | ```shell
|
66 | Total DISK read: 0.00 B/s | Total DISK write: 0.00 B/s
|
67 | TID PRIO USER DISK READ DISK WRITE SWAPIN IO> command
|
68 | 1 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % init [3]
|
69 | 2 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [kthreadd]
|
70 | 3 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [migration/0]
|
71 | 4 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [ksoftirqd/0]
|
72 | 5 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [watchdog/0]
|
73 | 6 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [migration/1]
|
74 | 7 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [ksoftirqd/1]
|
75 | 8 rt/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [watchdog/1]
|
76 | 9 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [events/0]
|
77 | 10 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [events/1]
|
78 | 11 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [khelper]
|
79 | 2572 be/4 root 0.00 B/s 0.00 B/s 0.00 % 0.00 % [bluetooth]
|
80 | ```
|
81 |
|
82 |
|