读取Beaglebone Black上的CPU温度

时间:2015-01-22 22:28:38

标签: ubuntu beagleboneblack

我有一个运行Ubuntu 14.04的Beaglebone Black。我使用guide to flashing a pre-built image to eMMC闪现了它。

从我看过的指南中,我应该能够阅读/sys/class/hwmon/hwmon0/device/temp1_input以获得CPU温度。但是,我的系统上没有这样的路径;我为Beaglebone Black AM3358 ARM CPU猜测内核模块提供了这个功能,我的图像缺少这样的模块,但我不知道从哪里开始获得这样的模块。实际上,/sys/class/hwmon是一个空目录。

这些是我的模块:

$ lsmod | sort
6lowpan_iphc           10154  1 bluetooth
bluetooth             316797  10 bnep,rfcomm
bnep                   11946  2
can_dev                 7430  1 c_can
c_can                   9400  1 c_can_platform
c_can_platform          5927  0
g_multi                 3238  0
iptable_filter          1149  1
ip_tables              11857  1 iptable_filter
libcomposite           38715  5 usb_f_acm,usb_f_ecm,usb_f_rndis,g_multi,usb_f_mass_storage
musb_am335x             1075  0
musb_dsps               8369  0
musb_hdrc              76236  1 musb_dsps
rfcomm                 46571  0
rfkill                 14659  2 bluetooth
u_ether                 9524  3 usb_f_ecm,usb_f_rndis,g_multi
usb_f_acm               5687  1
usb_f_ecm               7901  1
usb_f_mass_storage     34664  2 g_multi
usb_f_rndis            17711  2 g_multi
u_serial                9631  1 usb_f_acm
x_tables               12575  3 ip_tables,xt_multiport,iptable_filter
xt_multiport            2051  1

......和整体状况:

$ uname -a
Linux hostname 3.14.26-ti-r43 #1 SMP PREEMPT Wed Dec 24 05:27:12 UTC 2014 armv7l armv7l armv7l GNU/Linux
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.1 LTS
Release:        14.04
Codename:       trusty

那么,如何读取缺少此文件的Beaglebone Black上的CPU温度?

2 个答案:

答案 0 :(得分:3)

我已经完成了搜索互联网的工作,空手而归。

我发现的内容是当前的Debian(我正在使用Linux bbone 4.1.12-ti-r29 #1 SMP PREEMPT Mon Nov 9 22:46:19 UTC 2015 armv7l GNU/Linux),可能是它的所有派生词,也可能是它的最新前辈(至少可以追溯到你的内核3.14.26)不再填充/sys/class/hwmon

同样lm-sensors在电路板上找不到任何传感器,所以这也是一个死胡同。

我从TI收集到的是,温度传感器从未真正意义上被最终用户使用。 TI甚至规定了一种通过外部传感器测量电路板温度的方法(参见here)。

所以,这是一个无赖,但你有它。

编辑:我还发现Debian 8.2显示了我在这里描述的行为,但是今天我刷了Debian 7.9(来自here; Linux bbone 3.8.13-bone79 #1 SMP Tue Oct 13 20:44:55 UTC 2015 armv7l GNU/Linux)和那个附带一个完全填充的/sys,包括/sys/class/hwmon/hwmon0/device/temp1_input,这是一个以毫秒为单位的温度读数。请注意,这可能是一个不应该依赖的相对温度(acc.TI)。

答案 1 :(得分:1)

我尚未在ubuntu 14.04上对其进行测试,但这是我在此问题上的2美分。 tmon是一个非常简单的工具,可以在运行另一个过程时读取温度,就像timewatchtimeout等一样。 tmon/sys/class/thermal/thermal_zone*/temp的薄薄包装,在运行CPU密集型进程(模拟,游戏等)时监视Linux计算机/服务器的温度时很有用。

您可以从以下位置下载.AppImage“ binary”:https://github.com/gmagno/tmon/releases并立即方便地运行它,即:

安装

wget https://github.com/gmagno/tmon/releases/download/v0.3.7/tmon-a461481-x86_64.AppImage
chmod +x tmon*.AppImage
# optional: you may put it somewhere convenient in your file system and add a symlink in /usr/local/bin/tmon

或者,如果您愿意:

pip install tmonpy

用法

./tmon*.AppImage -h

示例

./tmon*.AppImage echo "Quick programs return a single value of temperature"
Quick programs return a single value of temperature


===================
Temp Monitor Report:

   Temp (°C) for a period of 0:00:00
   >> 58.0 °C <<

   /tmp/tmon-20200207@16h07m05-znn0x1o9.txt
===================
./tmon*.AppImage bash -c 'echo not so quick ones will show a chart; sleep 6'
not so quick ones will show a chart


===================
Temp Monitor Report:

   Temp (°C) for a period of 0:00:06
   60.00  ┤
   59.86  ┤
   59.71  ┤
   59.57  ┤
   59.43  ┤
   59.29  ┤
   59.14  ┤
   59.00  ┼╮   ╭─
   58.86  ┤│   │
   58.71  ┤│   │
   58.57  ┤│   │
   58.43  ┤│   │
   58.29  ┤│   │
   58.14  ┤│   │
   58.00  ┤╰───╯

   >> min: 58.0 °C <<
   >> avg: 58.4 °C <<
   >> max: 59.0 °C <<

   /tmp/tmon-20200207@16h08m25-p010ojhq.txt
===================

您也可以只运行tmon而没有任何参数,它将按预期运行。按Ctrl-C终止该过程并获取温度报告

./tmon*.AppImage  # and wait a few seconds before pressing Ctrl-C
^C

===================
Temp Monitor Report:

   Temp (°C) for a period of 0:00:08
   60.00  ┤
   59.71  ┤
   59.43  ┤
   59.14  ┤
   58.86  ┤  ╭╮
   58.57  ┤  ││
   58.29  ┤  ││
   58.00  ┼╮╭╯│
   57.71  ┤││ │
   57.43  ┤││ │
   57.14  ┤││ │
   56.86  ┤╰╯ │
   56.57  ┤   │
   56.29  ┤   │
   56.00  ┤   ╰────

   >> min: 56.0 °C <<
   >> avg: 56.9 °C <<
   >> max: 59.0 °C <<

   /tmp/tmon-20200207@15h59m37-u4cd94qh.txt
===================