CPU 温度の確認
GUI のアプリなら、 Xsensors=ソフトウェアマネージャから検索してインストール
コマンドなら、$ sudo apt install sensors
$ sensors
*******************************
GPU 温度の確認
nVidia の GPU 温度は nvclock や nvidia-smi で取得
$ sudo apt install nvclock
$ sudo apt install nvidia-smi
$ nvclock -T
$ nvidia-smi -q -d temperature
タスクバーに GPU 温度を表示
$ sudo apt-add-repository ppa:alexmurray/indicator-sensors
$ sudo apt-get install indicator-sensors
# indicator-sensors
Start automatically on login にチェック
表示させるGPU 項目にチェック
---------------------------
AMD の温度=fglrx ドライバを使用している場合
$ aticonfig --odgt
GPU を表示する mrtgスクリプト =fglrx ドライバを使用している必要がある。
# vi gputemp.sh #!/bin/sh export DISPLAY=:0 amdconfig --adapter=$1 --odgt | grep 'Temperature' | cut -d'-' -f2 | cut -c 2-3 echo 0 uptime | awk '{ gsub(/,/, ""); print $3, $4, $5; }' uname -n |
# vi /etc/mrtg/mrtg.cfg ### GPU 温度 ### Target[gpu0.temp]: `gputemp.sh 0` MaxBytes[gpu0.temp]: 99 Title[gpu0.temp]: gpu0 Temperature PageTop[gpu0.temp]: <H1> gpu0 temperature</H1> ShortLegend[gpu0.temp]: C YLegend[gpu0.temp]: Celsius Options[gpu0.temp]: growright,nopercent, nobanner, noinfo, gauge Unscaled[gpu0.temp]: ymd |