@Amishgamer
It is likely that your pi was throttling to 1200mhz
setting mine to 1200mhz returned 95s sysbench.
while it used to do this at 70c it has been changed to 60c degrees
if you have a fan or heatsink make sure they are properly fixed.
if you only have a heatsink and no fan then this temperature is normal, and the throttling level can be increased by setting
temp_soft_limit=70
to config.txt
here are some commands to read from vcgencmd the current voltage and frequencies
for src in arm core h264 isp v3d; do echo -e "$src:\t$(vcgencmd measure_clock $src)"; done
for id in core sdram_p sdram_i sdram_c ; do echo -e "$id:\t$(vcgencmd measure_volts $id)"; done
and read the systems boot time, userspace time completion can vary by up to 5 - 90 seconds depending on the last shutdown and if the system thinks it needs a filesystem check or on usb drives.
systemd-analyze
I added them to a script to be able to execute all together
#!/bin/bash for id in core sdram_p sdram_i sdram_c ; do echo -e "$id:\t$(vcgencmd measure_volts $id)"; done for src in arm core h264 isp v3d; do echo -e "$src:\t$(vcgencmd measure_clock $src)"; done cpuTemp0=$(cat /sys/class/thermal/thermal_zone0/temp) cpuTemp1=$(($cpuTemp0/1000)) cpuTemp2=$(($cpuTemp0/100)) cpuTempM=$(($cpuTemp2 % $cpuTemp1)) echo CPU temp"="$cpuTemp1"."$cpuTempM"'C" echo GPU $(/opt/vc/bin/vcgencmd measure_temp) systemd-analyze