Is there a version of CPUBurn that would work on the Raspberry pi Zero W?
If so, where can I download it?
- RPIgoodSBC
- Posts: 127
- Joined: Tue Mar 20, 2018 11:37 am
Re: CPU burn for Pi Zero W?
Code: Select all
wget https://raw.githubusercontent.com/ssvb/cpuburn-arm/master/cpuburn-a7.S
gcc -o cpuburn-a7 cpuburn-a7.S
./cpuburn-a7
Code: Select all
sudo apt-get install stress
stress -c 4
Re: CPU burn for Pi Zero W?
Thanks!