读取 Beaglebone Black 上的 CPU 温度



我有一个运行Ubuntu 14.04的Beaglebone Black。我使用将预构建的图像切换到 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 温度?

我已经

完成了我的搜索互联网,但空手而归。

到目前为止,我发现当前的 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 甚至规定了一种通过外部传感器测量电路板温度的方法(见此处)。

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

编辑:我还发现 Debian 8.2 显示了我在这里描述的行为,但是,今天我刷新了 Debian 7.9(从这里; 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,这是一个以毫摄氏度为单位的温度读数。请注意,这可能是一个不应该依赖的相对温度(根据TI)。

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

您可以下载 .AppImage 从这里"二进制":立即方便地 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
===================

最新更新