web-dev-qa-db-ja.com

ディスクアクティビティを監視する方法は?

Ubuntuでディスクアクティビティを表示するにはどうすればよいですか?たとえば、ディスクの書き込みと読み取り、およびディスク使用率を監視するにはどうすればよいですか?

Windowsのリソースモニターに似たアプリケーションを探しています。

54
Fritsen

Iotopを使用できます。インストールするには、ターミナルを開き、次のコマンドを実行します。

Sudo apt-get install iotop

Iotopを使用するには、ターミナルを開き、次のコマンドを入力します。

Sudo iotop

iotopは、すべてのディスクアクティビティをリアルタイムで表示し、リソースモニターのように、アクティビティを担当するコマンドとコマンドの背後にいるユーザーも表示します。

詳細はここをクリックしてください。

enter image description here

リソースモニターに似ているのは、プロセスを識別して強制終了する機能のhtopです。

Sudo apt-get install htop

そして、モニターモードでhtopを実行するには:

htop

または、個々のプロセスを完全にデバッグおよび強制終了するためのより多くの機能と許可が必要な場合:

Sudo htop

enter image description here

63
mchid

htopを使用できます。

Sudo apt install htop

次に、htopを開いて構成します。 F2 ->列-> IO_RATEを設定(またはIO_RATE_READ/IO_RATE_WRITE)-> F10

そして、次のようなものが表示されます:

screenshot

33
RedEyed

試すことができますnmon

Sudo apt-get install nmon

試してください:

nmon

以下のような出力:

enter image description here

Press d = Disk | Press c = CPU Info |Press r = RAM info | Press q = to exit
15
Ramesh Chand

dstatプログラムを使用できます。それをインストールするには、ターミナルでコマンドを実行するだけです

Sudo apt-get install dstat

dstatコマンドを使用すると、次のような完全なリアルタイムCPU /ネットワーク/ディスクアクティビティ監視ビューが表示されます。

mas@mas-laptop:~ > dstat 
You did not select any stats, using -cdngy by default.
----total-cpu-usage---- -dsk/total- -net/total- ---paging-- ---system--
usr sys idl wai hiq siq| read  writ| recv  send|  in   out | int   csw 
 15   5  76   4   0   0| 181k  177k|   0     0 |   0    61B|1651  3609 
  5   0  95   0   0   0|   0     0 | 162B 1064B|   0     0 | 500   994 
 15   4  77   4   0   0|   0   292k| 302B   52B|   0     0 | 687  1919 
  6   1  92   1   0   0|   0     0 |   0     0 |   0     0 | 496  1089 
  5   1  94   1   0   1|   0     0 |   0     0 |   0     0 | 422   919
  6   1  93   1   0   0|   0     0 |   0     0 |   0     0 | 517  1181 
  9   2  89   1   0   1|   0     0 |   0     0 |   0     0 | 494  1066

最新の15分までの負荷インジケータのディスクの使用情報のみを取得するには、dstat --disk --fs --loadコマンドを使用します。サンプル出力を以下に示します

$ dstat --disk --fs

-dsk/total- --filesystem- ---load-avg---
 read  writ|files  inodes| 1m   5m  15m 
 895k  186k|13728    100k|0.63 0.73 0.84
   0     0 |13728    100k|0.63 0.73 0.84
   0     0 |13728    100k|0.63 0.73 0.84
   0     0 |13728    100k|0.63 0.73 0.84
   0    12k|13728    100k|0.66 0.74 0.84
   0     0 |13728    100k|0.66 0.74 0.84
   0     0 |13728    100k|0.66 0.74 0.84
   0     0 |13728    100k|0.66 0.74 0.84
   0     0 |13728    100k|0.66 0.74 0.84^C

dstat --helpには次の情報があります:

Usage: dstat [-afv] [options..] [delay [count]]
Versatile tool for generating system resource statistics

Dstat options:
  -c, --cpu              enable cpu stats
     -C 0,3,total           include cpu0, cpu3 and total
  -d, --disk             enable disk stats
     -D total,hda           include hda and total
  -g, --page             enable page stats
  -i, --int              enable interrupt stats
     -I 5,eth2              include int5 and interrupt used by eth2
  -l, --load             enable load stats
  -m, --mem              enable memory stats
  -n, --net              enable network stats
     -N eth1,total          include eth1 and total
  -p, --proc             enable process stats
  -r, --io               enable io stats (I/O requests completed)
  -s, --swap             enable swap stats
     -S swap1,total         include swap1 and total
  -t, --time             enable time/date output
  -T, --Epoch            enable time counter (seconds since Epoch)
  -y, --sys              enable system stats

  --aio                  enable aio stats
  --fs, --filesystem     enable fs stats
  --ipc                  enable ipc stats
  --lock                 enable lock stats
  --raw                  enable raw stats
  --socket               enable socket stats
  --tcp                  enable tcp stats
  --udp                  enable udp stats
  --unix                 enable unix stats
  --vm                   enable vm stats

  --plugin-name          enable plugins by plugin name (see manual)
  --list                 list all available plugins

  -a, --all              equals -cdngy (default)
  -f, --full             automatically expand -C, -D, -I, -N and -S lists
  -v, --vmstat           equals -pmgdsc -D total

  --float                force float values on screen
  --integer              force integer values on screen

  --bw, --blackonwhite   change colors for white background terminal
  --nocolor              disable colors (implies --noupdate)
  --noheaders            disable repetitive headers
  --noupdate             disable intermediate updates
  --output file          write CSV output to file

delay is the delay in seconds between each update (default: 1)
count is the number of updates to display before exiting (default: unlimited)

このツールの詳細については、以下のリンクをご覧ください。

1)Dstatホームページ

2)DiskPerformanceコミュニティドキュメントページ

9
Anwar