Code: Select all
#!/bin/bash
clear
for f in {1..7}
do
vcgencmd measure_temp
sysbench --test=cpu --cpu-max-prime=25000 --num-threads=4 run >/dev/null 2>&1
done
vcgencmd measure_temp
I want to stress/check stability using prime95 the way I do on my PC. But it's not running on my rpi.
Code: Select all
$ ./mprime -m
bash: ./mprime: cannot execute binary file: Exec format error
In any case, is there a prime95 equivalent for raspberry pi OS 32 bit?
Thanks!