刚刚开始超频的时候发现无论怎么超频率都是600mhz,最后才发现是电压不够,后来换了一个电源适配器终于超上去了。 (3B+)https://www.raspberrypi.org/forums/viewtopic.php?f=29&t=82373
超频只要修改/boot/config文件就好了 https://blog.csdn.net/kxwinxp/article/details/78514024
force_turbo=1#强制满频率(在电源正常的情况下)
arm_freq=1580
over_voltage=8#CPU电压
core_freq=565
sdram_freq=600#内存频率
dtparam=sd_overclock=100#内存卡超频
over_voltage_sdram=2#内存电压
temp_soft_limit=70#降频阈值
官方文档 https://www.raspberrypi.org/documentation/configuration/config-txt/overclocking.md
查看CPU温度while true ; do vcgencmd measure_temp ; sleep 1 ; done
while true ; do echo $[$(cat /sys/class/thermal/thermal_zone0/temp)/1000]°; sleep 1 ; done
安装memtester(内存测试)sudo apt install memtester
测试sudo memtester 210M -1
安装sysbench(性能测试)sudo apt-get install -y sysbench
压榨处理器性能sysbench --num-threads=4 --test=cpu --cpu-max-prime=20000 run
安装strees(压力测试)sudo apt install stress
四线程测试10分钟stress -c 4 -t 10m -v