Bearbin's Automated Builds
#51
Nah, Raspberry Pis don't need any cooling. You couldn't do anything anyway, the RAM is mounted on top of the SoC with insulation between. If you look at the build time you also see it's less than an hour because GCC only compiles the changed files and then links the resultant object files together.
Reply
Thanks given by:
#52
Still, my RasPi gets incredibly hot, so I mounted a few heatsinks, just in caseTongue

When one of the core files get changed, such as the BlockID.h or Item.h, most of the codebase is recompiled. That takes the hour. True that it doesn't happen too often, but still...
Reply
Thanks given by:
#53
Maybe I'll run a temperature sensor that logs the temp every few seconds and then I can graph it to see if tem is a problem. (That's if the RPi has a sensor).

Extra: I just updated the SSH slaves plugin; so hopefully the Pi will freeze slightly less often.
Reply
Thanks given by:
#54
The Raspberry pi is fixed! A plugin update derped and it took a while to fix it.
Reply
Thanks given by:
#55
The buildserver now provides MD5sum files, which should be useful for tiger's autoupdate script.
Reply
Thanks given by:
#56
Our space just got doubled, the service should remain operational for quite a while longer. Also updating to the new git builds as we speak.
Reply
Thanks given by:
#57
The RasPi has a sensor built into the CPU, I once found the exact linux command to execute to find out the value, alas, I don't remember it anymore.
Reply
Thanks given by:
#58
(07-28-2013, 05:10 AM)xoft Wrote: The RasPi has a sensor built into the CPU, I once found the exact linux command to execute to find out the value, alas, I don't remember it anymore.

to get the tempeture its: vcgencmd measure_temp

if you want farenheight its:

#!/bin/bash
tm=`/opt/vc/bin/vcgencmd measure_temp`
tc=`echo $tm| cut -d '=' -f2 | sed 's/..$//'`
tf=$(echo "scale=2;((9/5) * $tc) + 32" |bc)
echo $tf\°F

put that into a .sh file and then execute itTongue
Reply
Thanks given by:
#59
What if I want celcius? Just omit the tf line? Thanks, BTW
Reply
Thanks given by:
#60
(07-28-2013, 06:02 AM)bearbin Wrote: What if I want celcius? Just omit the tf line? Thanks, BTW

If you want celsius then execute vcgencmd measure_temp command on the command line.
Reply
Thanks given by:




Users browsing this thread: 1 Guest(s)