web-dev-qa-db-ja.com

オーバークロックされたUbuntuシステムを監視およびストレステストするにはどうすればよいですか?

UbuntuでIntel Core i7-4790kの温度を強調して監視するにはどうすればよいですか?

3
tomkis

ストレスngをお勧めします(ストレステストシステムに書いたので)、それには広範なストレステストが組み込まれています。行列ストレッサーは、CPU浮動小数点、キャッシュ、およびメモリを実行するための最初の例として適しています。

stress-ng --matrix 0 -t 60s --tz
stress-ng: info:  [10514] dispatching hogs: 4 matrix
stress-ng: info:  [10514] cache allocate: default cache size: 3072K
stress-ng: info:  [10514] successful run completed in 60.00s (1 min, 0.00 secs)
stress-ng: info:  [10514] matrix:
stress-ng: info:  [10514]               acpitz   78.00 °C
stress-ng: info:  [10514]         x86_pkg_temp   78.25 °C

上記は、60秒間すべてのCPUでマトリックスストレッサーを実行し、ACPIサーマルゾーンの温度ゾーン温度とCPUパッケージ温度をダンプします。

CPUストレッサーには、たとえば、2つのCPUで30秒間の長い二重浮動小数点演算を実行するCPUにストレスをかけるために、以下を使用するためのさまざまなストレス方法が含まれています。

stress-ng --cpu 2 --cpu-method longdouble  -t 30s --tz --metrics-brief
stress-ng: info:  [10572] dispatching hogs: 2 cpu
stress-ng: info:  [10572] cache allocate: default cache size: 3072K
stress-ng: info:  [10572] successful run completed in 30.00s
stress-ng: info:  [10572] stressor       bogo ops real time  usr time  sys time   bogo ops/s   bogo ops/s
stress-ng: info:  [10572]                           (secs)    (secs)    (secs)   (real time) (usr+sys time)
stress-ng: info:  [10572] cpu               71482     30.00     59.96      0.00      2382.65      1192.16
stress-ng: info:  [10572] cpu:
stress-ng: info:  [10572]               acpitz   76.00 °C
stress-ng: info:  [10572]         x86_pkg_temp   76.50 °C

CPUストレッサーメソッドをすべて表示するには、次を使用します。

stress-ng --cpu-method which
cpu-method must be one of: all ackermann bitops callfunc cdouble cfloat
clongdouble correlate crc16 decimal32 decimal64 decimal128 dither djb2a
double euler explog fft fibonacci float fnv1a gamma gcd gray hamming hanoi
hyperbolic idct int128 int64 int32 int16 int8 int128float int128double
int128longdouble int128decimal32 int128decimal64 int128decimal128
int64float int64double int64longdouble int32float int32double
int32longdouble jenkin jmp ln2 longdouble loop matrixprod nsqrt
omega parity phi pi pjw prime psi queens Rand rand48 rgb sdbm sieve
sqrt trig union zeta

Stress-ngのマニュアルページを参照してください。ストレステストには多くのオプションがあります。 stress-ngプロジェクトページ も参照してください。

5
Colin Ian King