A few days ago, I ran some benchmarks in Raspberry Pi 4, and quickly found out that using the board without a cooling solution will cause serious performance issues, as in some cases my board was slower than Raspberry Pi 3 model B due to severe overheating. After playing with LibreELEC yesterday, I’ve now reinstalled Raspbian Buster Desktop on the board, and fitted it with a largish heatsink and some old thermal paste. So I’ll run benchmarks again with and without heatsink. I’ll only run sbc-bench this time. SBC Bench Installation Open a terminal windows or connect to the board through SSH and run:
1 |
wget https://raw.githubusercontent.com/ThomasKaiser/sbc-bench/master/sbc-bench.sh |
Raspbian Buster will automatically fetch the latest operating systems packages upon first boot, but apparently not the latest firmware:
1 2 3 4 |
/opt/vc/bin/vcgencmd version Jun 20 2019 16:04:31 Copyright (c) 2012 Broadcom version 407b1da8fa3d1a7108cb1d250f5064a3420d2b7d (clean) (release) (start) |
So I ran rpi-update to get the very latest firmware as well, and rebooted the board:
1 2 3 4 |
/opt/vc/bin/vcgencmd version Jun 26 2019 17:42:42 Copyright (c) 2012 Broadcom version 1186f932808ed601ddd583a30a3ce055477b1a26 (clean) (release) (start) |
Normally, you should not have to do it, […]