日々の生活を好き勝手につづったブログ(My blog is written by inoshita.jp)
$ sudo aptitude install stress
[sudo] password for hero:
以下の新規パッケージがインストールされます:
stress
0 個のパッケージを更新、 1 個を新たにインストール、 0 個を削除予定、0 個が更新されていない。
16.8 k バイトのアーカイブを取得する必要があります。 展開後に 73.7 k バイトのディスク領域が新たに消費されます。
取得: 1 http://jp.archive.ubuntu.com/ubuntu/ precise/universe stress amd64 1.0.1-1build1 [16.8 kB]
Fetched 16.8 kB in 0秒 (39.8 kB/s)
以前に未選択のパッケージ stress を選択しています。
(データベースを読み込んでいます ... 現在 77413 個のファイルとディレクトリがイン ストールされています。)
(.../stress_1.0.1-1build1_amd64.deb から) stress を展開しています...
install-info のトリガを処理しています ...
man-db のトリガを処理しています ...
stress (1.0.1-1build1) を設定しています ...
$ stress --cpu 4 --timeout 1h
stress: info: [7280] dispatching hogs: 4 cpu, 0 io, 0 vm, 0 hdd
オプション
$ stress --help
`stress' imposes certain types of compute stress on your system
Usage: stress [OPTION [ARG]] ...
-?, --help show this help statement
--version show version statement
-v, --verbose be verbose
-q, --quiet be quiet
-n, --dry-run show what would have been done
-t, --timeout N timeout after N seconds
--backoff N wait factor of N microseconds before work starts
-c, --cpu N spawn N workers spinning on sqrt()
-i, --io N spawn N workers spinning on sync()
-m, --vm N spawn N workers spinning on malloc()/free()
--vm-bytes B malloc B bytes per vm worker (default is 256MB)
--vm-stride B touch a byte every B bytes (default is 4096)
--vm-hang N sleep N secs before free (default is none, 0 is inf)
--vm-keep redirty memory instead of freeing and reallocating
-d, --hdd N spawn N workers spinning on write()/unlink()
--hdd-bytes B write B bytes per hdd worker (default is 1GB)
--hdd-noclean do not unlink files created by hdd workers
Example: stress --cpu 8 --io 4 --vm 2 --vm-bytes 128M --timeout 10s
Note: Numbers may be suffixed with s,m,h,d,y (time) or B,K,M,G (size).
$
--cpu N:Nプロセスでsqrt()を実行
--io N:Nプロセス分sync()を実行
--vm N:Nプロセス分malloc() and free()を実行