rock64_health.sh
#1
Hello,
  I hated it to type sudo everytime for the simple rock64_health.sh-command, so I did some shell-voodoo to get the needed values from /sys without uid=0.
I was always interested in the gpu-temperature, too and with rockpro64 the frequency and governor of the A53/A72 cores. So I pimped the script further and got the attached one.
It should work on rock64 and 4.1x.x, too, but I have not tested it yet. Can some good soul can me give feedback on this?

Works like this:
Code:
$ rock64_health.sh
CPU count      : 6  
CPU 0-3
 freq         : 600.00 MHz
 gov          : ondemand  
CPU 4-5
 freq         : 408.00 MHz
 gov          : ondemand  
SOC Temp       : 26.88 C
GPU Temp       : 27.50 C



TIA,
hunderteins


Attached Files
.txt   rock64_health.sh.txt (Size: 1,016 bytes / Downloads: 309)
#2
I on my rockpro use a script:

Code:
#!/bin/sh

while true :
do
 now=$(date "+%F,%H:%M:%S")
 temp1=$(cat /sys/class/thermal/thermal_zone0/temp)
 temp2=$(cat /sys/class/thermal/thermal_zone1/temp)
 freq0=$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq)
 freq1=$(cat /sys/devices/system/cpu/cpu1/cpufreq/scaling_cur_freq)
 freq2=$(cat /sys/devices/system/cpu/cpu2/cpufreq/scaling_cur_freq)
 freq3=$(cat /sys/devices/system/cpu/cpu3/cpufreq/scaling_cur_freq)
 freq4=$(cat /sys/devices/system/cpu/cpu4/cpufreq/scaling_cur_freq)
 freq5=$(cat /sys/devices/system/cpu/cpu5/cpufreq/scaling_cur_freq)
 pwm1=$(cat /sys/class/hwmon/hwmon0/pwm1)
 echo $now,$(( freq0 /1000 )),$(( freq1 /1000 )),$(( freq2 /1000 )),$(( freq3 /1000 )),$(( freq4 /1000 )),$(( freq5 /1000 )),$(( temp1 / 1000 )),$(( temp2 / 1000 )),$(( pwm1 )) >> /var/log/temperature.log
 sleep 5
done

running a script from /etc/rc.local
The result of the log can be found here.
_____________________________________________________________________________________________________________________________________________
my SOHO NAS RockPro64 4GB v2.1 / eMMC 32GB / PCIe -> 4*SATA Marvell 88SE9235 / SD-card 64 GB / NAS Casing / image Debian Stretch Minimal / Kernel 4.4.xxx ayufan
my Multimedia desktops: ASUS H310T G5500, ODROIDs -XU4, -XU3, -C2, -C1;
my trash BananaPi; RPi B, B+; ODROID-W
#3
I run gkrellm from my startup scripts - from a generation that cant cope unless I can see the lights flashing Big Grin 
   
  • ROCKPro64 v2.1 2GB, 16Gb eMMC for rootfs, SX8200Pro 512GB NVMe for /home, HDMI video & sound, Bluetooth keyboard & mouse. Arch (6.2 kernel, Openbox desktop) for general purpose daily PC.
  • PinePhone Pro Explorer Edition, daily driver, rk2aw & U-boot on SPI, Arch/SXMO & Arch/phosh on eMMC
  • PinePhone BraveHeart now v1.2b 3/32Gb, Tow-boot with Arch/SXMO on eMMC


Forum Jump:


Users browsing this thread: 1 Guest(s)