#はじめに
ubuntuでcpuの温度を取得する方法を調べていたらhddの温度も
取得できるらしいことを知った
環境は Ubuntu18.0.4だがCentOS系や他ディストリも基本的にやり方は同じ
#hddtempを使う
$ apt install hddtemp
(省略)
$ hddtemp /dev/sda
/dev/sda: HGST HTS545025A7E380: 35°C
hddtemp の引数でドライブを指定。*ドライブを指定しないと使えない
/dev/以下は環境により読み替えが必要。
#inxiを使う
$ apt install inxi
(省略)
$ inxi -xD
Drives: HDD Total Size: 250.1GB (16.8% used)
ID-1: /dev/sda model: HGST_HTS545025A7 size: 250.1GB temp: 35C
#psensorを使う(GUI)
これはCPUの温度計測でつかったものと同じやつ
$ apt install psensor
(省略)
$ psensor
#参考にしたサイト
https://linuxconfig.org/obtain-hard-drive-temperature-information-using-linux
https://www.2daygeek.com/view-check-cpu-hard-disk-temperature-linux/