create account

Gridcoin Guide For Odroid (running BOINC) by thorondor

View this thread on: hive.blogpeakd.comecency.com
· @thorondor · (edited)
$15.44
Gridcoin Guide For Odroid (running BOINC)
<center>![gridcoin_odroid.png](https://steemitimages.com/DQmZWGtPH8cfYaFGdbKSoFEvU3rpMCdUvMBAMbeiddjn9ZA/gridcoin_odroid.png)</center>

Gridcoin is a cryptocurrency that rewards users for running the Berkeley Open Infrastructure for Network Computing (BOINC). With BOINC you are not burning electricity in order to find a fitting nonce for a hash, you are actually contributing to scientific research.
If this sounds interesting you should check out this wonderful guide by @dutch to get you started: [Link to Guide](https://steemit.com/gridcoin/@dutch/the-total-and-utter-noobie-guide-to-successfully-mining-the-cryptocurrency-gridcoin)

My Guide will focus on running Boinc on the Odroid XU4Q. Here is what I will cover:

* The Odroid XU4
* Things you'll need
* The Setup
* Configuration Part 1
* Making your Odroid unique
* Configuration Part 2
* Connecting to grcpool.com
* Some words on heat
* Performance
* Whats next?

## The Odroid XU4

The Odroid XU4 is a single board computer (SBC) by hardkernel. SBCs are pretty energy efficient and thus are suited very well for crunching 24/7 without skyrocketing your power bill. With its Samsung Exynos 5422 processor the XU4 comes with a lot of power on 8 Cores (4x 2000Mhz, and 4x 1400Mhz). You could call it a raspberry pi on steroids. 

## Things you'll need

* The Odroid XU4 or Odroid XU4Q. The only difference between them is the cooling. The XU4 comes with an active cooler, but a lot of users reported that it's kind of noisy, so I decided to get the XU4Q which comes with a big heat sink. I had some trouble with heat, but more on that later.
* A 5V/4A power supply
* A storage medium. You can choose between an SD-Card or an eMMC. The eMMC is more expensive, but a lot faster and better at multi-tasking and is recommended to use by hardkernel. I decided that the extra investment was not worth it for running BOINC, because it does not need that much read and write operations, so I bought an SD-Card. I chose an 16GB Class 10 Micro-SD-Card with UHS-1.
* an ethernet cable to hook it up to your router
* a case is optional, but I bought one as well
* an SD-Card Reader

## The Setup

* Put the SD-Card into your SD-Card-Reader
* Format the SD-Card using a tool like SDFormatter. In the options choose “Format Type FULL (Erase)” and set Format Size Adjustment to ON
* You do have the choice between running android or linux, but I went with linux because I could use some of my experience from my raspberry pis
* Go to https://odroid.in/ubuntu_16.04lts/ and download ubuntu minimal (ubuntu-16.04.02-minimal-odroid-xu4-20170516) and unzip it
* Write the Image to the SD-Card using a tool like Win32DiskImager
* Put the SD-Card into the Odroid and make sure the switch on the side is in the correct position (you can flip it in order to choose to boot from eMMC or SD-Card). Now you can hook up your keyboard, monitor and ethernet cable and finally plug in the power cable. The Odroid should boot now, time for configuration.

<center>![IMG_20170722_200139.jpg](https://steemitimages.com/DQmNgDL6vU5wZh9bij9VGke7FHBay3cNU2ZNMTZoTkM6zMM/IMG_20170722_200139.jpg)</center>


## Configuration Part 1

* Login using user “root” with password “odroid”. Note: When using Linux you don't see any characters being typed when typing a password.
* Start by adding a new user with “adduser odroid” and set a password
* Add the new user to the sudo group with “adduser odroid sudo”
* Update apt-get with “apt-get update”
* Upgrade with “apt-get upgrade”

## Making your Odroid unique

I am not sure if this step is 100% necessary when running solo, but when crunching in the pool I had quite a few problems with the pool or the projects websites not being able to tell my Odroid apart from other users Odroids.
With the image we downloaded we unfortunately have the same MAC address like everyone else using this image. You can check this with “ifconfig”. Your HWaddr is probably 00:1e:06:31:ab:0a. So there are two things I did to make my Odroid unique to the outside world.

*Step 1: Change the MAC address*
* Install macchanger with “apt-get install macchanger”
* You can now change your MAC address with “macchanger -a eth0”
* Check out your new MAC (HWaddr with “ifconfig”)
* I wanted to make sure the MAC does not jump back to its default address after a reboot and I didn't want the MAC to change to anything else in order to configure my router to assign the same IPv4 to my Odroid. So let's make sure the new Mac we just received is set on boot.
* Type “nano /etc/init.d/macchanger” to create a new file
* Add the following content:
***
    #!/bin/bash
    # disable network device
    ifconfig eth0 down
    # set the mac address (replace the FF:FF… with your new MAC)
    /usr/bin/macchanger -m FF:FF:FF:FF:FF:FF eth0
    # enable network device
    ifconfig eth0 up
***
* Leave the editor with CTRL + X. Save – yes.
* Make it executable with “chmod +x /etc/init.d/macchanger”
* Enable it with “update-rc.d macchanger defaults 10”

*Step 2: Change the hostname*
* Change the hostname with “hostnamectl set-hostname NewNameHere”
* Open “nano /etc/hosts” and replace your new hostname here as well. CTRL + X to leave and save – yes.
* Open “nano /etc/hostname” and put your new hostname here as well

## Configuration Part 2

* Go to your router and assign a fixed IPv4 to your Odroid device. This is different on every router, it's most likely somewhere in the DHCP settings.
* While you are here, give your computer a fixed IPv4 as well, we will need this in order to control BOINC from SSH.
* Now that we will reach the Odroid with the same IPv4 all the time, we can finally go headless and remove the monitor and keyboard.
* SSH into your Odroid from your computer using a tool like PuTTY and the IPv4 of your Odroid
* Login with your newly created user “Odroid” and the password you chose
* It's finally time to install BOINC using “sudo apt-get install boinc”
* Let's configure the remote_hosts.cfg next with “sudo nano /etc/boinc-client/remote_hosts.cfg”. Add the IP of your computer at the bottom and leave and save wih CTRL + X.
* Next up is gui_rpc_auth.cfg with “sudo nano /etc/boinc-client/gui_rpc_auth.cfg”. The file is most likely empty. Place your password here (I used my login password for the odroid). Leave and Save with CTRL + X.
* switch to the boinc directory with “cd /var/lib/boinc-client”
* Boinc should already be running and you can control it from here with “boinccmd”. Type “boinccmd --get_simple_gui_info” for example, to see the current projects and tasks. If you do this now, the list should be empty.

## Connecting to grcpool.com

You could very well use the Odroid for solo crunching from here, or hook it up to the BAM!.
I chose to add this host to my account on grcpool.com. If you don't have an account, go to the website and create one (it's not hard and there are plenty of videos/guides to help you out).
* In order to make your Odroid show up on the hosts page in your grcpool account you need to join an account manager. You can do this with “sudo boinccmd --join_acct_mgr https://www.grcpool.com/ Username Password”
* If you refresh grcpool.com now, the host should show up
* Time to select a project for the host. The Odroid is an ARM device, which means that you will have to pick a project, that works with ARM. You can go to https://www.grcpool.com/project/poolStats and pick a project that hast a coloured raspberry. For efficiency you should avoid projects where you will compete with other users GPUs, so you could pick Universe@Home for example. Add the project and save your settings.
* Now you have to sync the Odroid and the pool again so it will see the project it has to crunch. You do this with “sudo boinccmd --join_acct_mgr https://www.grcpool.com/ Username Password”
* If you now type “boinccmd --get_simple_gui_info” the project should show up. Don't worry if you don't see any tasks, they are probably being downloaded right now.
* Come back after a few minutes and type “boinccmd--get_simple_gui_info” again. The tasks should show up now and the Odroid should be crunching happily. You can now sync the Odroid with the pool again and get rid of the error on the website this way (so the pool knows, that everything is now correctly synced). “sudo boinccmd --join_acct_mgr https://www.grcpool.com/ Username Password”
* After 24h (maybe earlier) your magnitude on grcpool.com should begin to rise.

## Some words on heat

Crunching for BOINC will make your Odroid sweat. I quickly reached 90°C, which I wasn't really comfortable with. The passive heat sink just can't handle the full load and the CPU will be throttled. 

Here is some data I collected:
After 10 minutes: 91°C, 4x 1400Mhz, 4x1600Mhz
After 18 minutes: 90°C, 4x 1200Mhz, 4x1400Mhz
After 36 minutes: 90°C, 4x 1300Mhz, 4x1500Mhz

Here is the script I used to monitor this:
***
    #!/bin/sh
watch "echo -n '0: CPU Frequency: ' && echo -n $((`sudo cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq` /1000)) && echo 'Mhz' \
&& echo -n '1: CPU Frequency: ' && echo -n $((`sudo cat /sys/devices/system/cpu/cpu1/cpufreq/cpuinfo_cur_freq` /1000)) && echo 'Mhz' \
&& echo -n '2: CPU Frequency: ' && echo -n $((`sudo cat /sys/devices/system/cpu/cpu2/cpufreq/cpuinfo_cur_freq` /1000)) && echo 'Mhz' \
&& echo -n '3: CPU Frequency: ' && echo -n $((`sudo cat /sys/devices/system/cpu/cpu3/cpufreq/cpuinfo_cur_freq` /1000)) && echo 'Mhz' \
&& echo -n '4: CPU Frequency: ' && echo -n $((`sudo cat /sys/devices/system/cpu/cpu4/cpufreq/cpuinfo_cur_freq` /1000)) && echo 'Mhz' \
&& echo -n '5: CPU Frequency: ' && echo -n $((`sudo cat /sys/devices/system/cpu/cpu5/cpufreq/cpuinfo_cur_freq` /1000)) && echo 'Mhz' \
&& echo -n '6: CPU Frequency: ' && echo -n $((`sudo cat /sys/devices/system/cpu/cpu6/cpufreq/cpuinfo_cur_freq` /1000)) && echo 'Mhz' \
&& echo -n '7: CPU Frequency: ' && echo -n $((`sudo cat /sys/devices/system/cpu/cpu7/cpufreq/cpuinfo_cur_freq` /1000)) && echo 'Mhz' \
&& echo -n 'TEMP: ' && sudo cat /sys/devices/virtual/thermal/thermal_zone0/temp"
***
* Create the file with “sudo nano showtemp.sh” and paste the content.
* Save and close the file
* Make it executable with “sudo chmod +x showtemp.sh”
* run it with “./showtemp.sh”
* quit with CTRL + C.


I really wanted the Odroid to run at full performance, so I added an old CPU fan on top of the heat sink. Unfortunately I had nothing to wire it up to the Odroid, so I used an old Nokia charger to power the fan (this was nice because I didn't really need 12V anyway and the 4.9V the charger outputs is enough to keep it cool).

<center>![IMG_20170826_105040.jpg](https://steemitimages.com/DQmPWGqrRLBKysRMwx8mfA1isMLTH6wR1sXcfv8Ge4U6Wfp/IMG_20170826_105040.jpg)</center>

## Performance

I am really happy with the performance of this setup. According to the gene.disi.unitn.it website floating point operations are at 1373.06 million per second and integer operations at 5679.53 million per second (http://gene.disi.unitn.it/test/show_host_detail.php?hostid=12282)
And what's the RAC and MAG? I ran into a lot of problems when setting up the Odroid as you can probably tell from the length of this guide. Especially the temperatures, making the Odroid unique and making it run smoothly with grcpool.com took quite a lot of time. So my mag dropped a few times and when my SD-Cards failed I had to start from scratch with a new one. That's why I can't give you numbers right now.
In terms of power consuption I measured 4.2W when in idle and 13W under full load. Which means that the Odroid might be the only device I can run on german electricity costs that might pay for itself.

## What's next?

* <b>Solar:</b>At one point I got really interested in running this thing with solar power only. Just imagine crunching for science with the power of the sun alone. That's amazing. Unfortunately we do not have a roof where I can mount big panels. The panels to run it 24/7/365.25 would need to be bigger than I expected in the beginning in order to fill up the batteries for a constant draw of 13W. Monitoring battery levels and safely turn off the Odroid and other things seemed to be too much overload to go into detail.
* <b>Giant heat sink:</b> I might try and replace the active fan with a really big heat sink to reduce power consumtion even more.
* <b>Odroid MC1: </b>The Ordoid MC1 will be released by hardkernel in September  and is basically 4 Odroid XU4 stacked on top of each other without HDMI-ports and stuff like that for ~200$. If my Odroid keeps running stable now this might be something really interesting to look into.

I hope this helps you getting started. I am by no means an expert on Odroids, just trying to share my findings. Happy crunching! :)

<b>Thoro</b>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorthorondor
permlinkgridcoin-guide-for-odroid-running-boinc
categorygridcoin
json_metadata{"tags":["gridcoin","cryptocurrency","odroid","beyondbitcoin","boinc"],"users":["dutch"],"image":["https://steemitimages.com/DQmZWGtPH8cfYaFGdbKSoFEvU3rpMCdUvMBAMbeiddjn9ZA/gridcoin_odroid.png","https://steemitimages.com/DQmNgDL6vU5wZh9bij9VGke7FHBay3cNU2ZNMTZoTkM6zMM/IMG_20170722_200139.jpg","https://steemitimages.com/DQmPWGqrRLBKysRMwx8mfA1isMLTH6wR1sXcfv8Ge4U6Wfp/IMG_20170826_105040.jpg"],"links":["https://steemit.com/gridcoin/@dutch/the-total-and-utter-noobie-guide-to-successfully-mining-the-cryptocurrency-gridcoin","https://odroid.in/ubuntu_16.04lts/","https://www.grcpool.com/","https://www.grcpool.com/project/poolStats","http://gene.disi.unitn.it/test/show_host_detail.php?hostid=12282"],"app":"steemit/0.1","format":"markdown"}
created2017-08-26 10:15:03
last_update2017-08-26 10:49:00
depth0
children32
last_payout2017-09-02 10:15:03
cashout_time1969-12-31 23:59:59
total_payout_value11.672 HBD
curator_payout_value3.772 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12,725
author_reputation750,222,434,745
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,921,042
net_rshares3,822,841,833,096
author_curate_reward""
vote details (34)
@bgb ·
Great article. Just to expand on the pool problem... Several pool members have experienced problems while trying to attach projects. Thanks to Thoro for helping to investigate this issue. The pool refuses hosts which appear to be duplicates.  The problem occurs on the project sites as they think the Odroid is the same host as one that already exists in their database. I would expect at least a statistics problem with Odroid in solo. I am not 100% sure if the Gridcoin network would have a problem with this scenario or not, but it seems like there could be.
👍  
properties (23)
authorbgb
permlinkre-thorondor-gridcoin-guide-for-odroid-running-boinc-20170826t114254687z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-26 11:42:54
last_update2017-08-26 11:42:54
depth1
children0
last_payout2017-09-02 11:42:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length561
author_reputation142,482,481,763
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,926,820
net_rshares601,384,899
author_curate_reward""
vote details (1)
@grider123 ·
Interesting read. Will you publish an update with your RAC and Magnitude? Would be interesting.
properties (22)
authorgrider123
permlinkre-thorondor-gridcoin-guide-for-odroid-running-boinc-20170826t113633601z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-26 11:36:33
last_update2017-08-26 11:36:33
depth1
children3
last_payout2017-09-02 11:36:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation107,965,352,035,530
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,926,443
net_rshares0
@thorondor ·
$0.05
Sure, I will follow up with numbers :)
👍  
properties (23)
authorthorondor
permlinkre-grider123-re-thorondor-gridcoin-guide-for-odroid-running-boinc-20170826t114107399z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-26 11:41:06
last_update2017-08-26 11:41:06
depth2
children2
last_payout2017-09-02 11:41:06
cashout_time1969-12-31 23:59:59
total_payout_value0.038 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation750,222,434,745
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,926,725
net_rshares12,499,372,135
author_curate_reward""
vote details (1)
@dysprosium ·
Any numbers yet? :)
properties (22)
authordysprosium
permlinkre-thorondor-re-grider123-re-thorondor-gridcoin-guide-for-odroid-running-boinc-20170829t203621966z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-29 20:36:18
last_update2017-08-29 20:36:18
depth3
children1
last_payout2017-09-05 20:36:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation1,382,816,192,493
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,269,682
net_rshares0
@grocket · (edited)
Changing hostname is imperative for solo crunching as well..Took me about a month to figure that out!  All five odroids running smoothly now though.  A guide like this will help people get set up much easier.  There was A LOT of googling for me, but I learned a good bit.
 
edit: http://www.rechenkraft.net/yoyo//hosts_user.php?userid=279173  im dumb you can link hosts, odroid1 with zero credit is the day odroid1,2,3,4retur... started crunching
👍  
properties (23)
authorgrocket
permlinkre-thorondor-gridcoin-guide-for-odroid-running-boinc-20170828t230929868z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1","links":["http://www.rechenkraft.net/yoyo//hosts_user.php?userid=279173"]}
created2017-08-28 23:09:30
last_update2017-08-30 00:20:09
depth1
children6
last_payout2017-09-04 23:09:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length446
author_reputation2,713,964,453
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,172,408
net_rshares0
author_curate_reward""
vote details (1)
@thorondor ·
That's great. Are they running ubuntu minimal? I had some problems with my odroid in the past and switched over to arch last weekend to see if my problems will continue.
properties (22)
authorthorondor
permlinkre-grocket-re-thorondor-gridcoin-guide-for-odroid-running-boinc-20170829t054835804z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-29 05:48:21
last_update2017-08-29 05:48:21
depth2
children5
last_payout2017-09-05 05:48:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length169
author_reputation750,222,434,745
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,196,149
net_rshares0
@grocket ·
Umm, I think its a full version of Ubuntu.. I had zero experience with linux or SoC type things prior to buying the odroids, but Ubuntu 16.04 (MATE desktop?) with kernel 4.xx is what they are using.

I am interested in trying arch linux on one of them.  It is essentially manual mode linux yeah?
properties (22)
authorgrocket
permlinkre-thorondor-re-grocket-re-thorondor-gridcoin-guide-for-odroid-running-boinc-20170829t221300547z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-29 22:13:00
last_update2017-08-29 22:13:00
depth3
children4
last_payout2017-09-05 22:13:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length295
author_reputation2,713,964,453
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,277,347
net_rshares0
@jedigeiss ·
Hi @thorondor nice article! Thanks of for that cool investigation of yours I was a lot of times super close to buy one of those but since the mc1 is announced I will wait on that little bugger ;) <br> 
Why are you not using the usb port of the odroid to power the fan ? You can get access to the 5v by using the red and black cable inside the usb cable :) this should easily be enough for the fan. Iam having such a setup with my nanopi M3 which also runs hot like hell without active cooling...
properties (22)
authorjedigeiss
permlinkre-thorondor-2017826t13537122z
categorygridcoin
json_metadata{"tags":"gridcoin","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-26 11:53:09
last_update2017-08-26 11:53:09
depth1
children1
last_payout2017-09-02 11:53:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length495
author_reputation327,622,417,045,961
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,927,486
net_rshares0
@thorondor ·
That's a nice idea as well. :)
properties (22)
authorthorondor
permlinkre-jedigeiss-re-thorondor-2017826t13537122z-20170826t121849268z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-26 12:18:48
last_update2017-08-26 12:18:48
depth2
children0
last_payout2017-09-02 12:18:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation750,222,434,745
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,929,117
net_rshares0
@jefpatat ·
Many thanks for this interesting read! I'm planning to do exactly the same when I get back home. Why didn't you buy the actively cooled version. Hardkernel has a solid reputation. I don't think you'd have to work about temps with that one.
👍  
properties (23)
authorjefpatat
permlinkre-thorondor-gridcoin-guide-for-odroid-running-boinc-20170826t105143529z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-26 10:51:45
last_update2017-08-26 10:51:45
depth1
children5
last_payout2017-09-02 10:51:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length239
author_reputation26,609,526,234,408
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,923,316
net_rshares2,639,472,960
author_curate_reward""
vote details (1)
@thorondor ·
When googling I found a lot of people complaining about the noise. That's why I thought the newer version with the heat sink might be a good idea. In the end I am not sure if the version with the regular cooler would be sufficient for the load that Boinc creates. Maybe someone else can tell us :)
properties (22)
authorthorondor
permlinkre-jefpatat-re-thorondor-gridcoin-guide-for-odroid-running-boinc-20170826t112540178z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-26 11:25:39
last_update2017-08-26 11:25:39
depth2
children4
last_payout2017-09-02 11:25:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length297
author_reputation750,222,434,745
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,925,747
net_rshares0
@jimbo88 · (edited)
$0.02
I have three of these, all with the active cooler. One fan has failed (after about 2 months), but the other two are still working. They run in the low 80s, but still throttle to 1.9 Ghz.

For the one that no longer has a working fan, I moved it in front of a cheap usb fan, which seems to keep it nice and cool.

![IMG_20170826_090611951.jpg](https://steemitimages.com/DQmXBzEgiYDVBciEHK4Nc6AkQ9N56G4xpfDMAMRyRNsEiLw/IMG_20170826_090611951.jpg)

The two that have a working active cooler on-board are on the right, and the one that needs an external fan is buried on the bottom of the pile.

The Ordoid MC1 seems pretty cool.
👍  , , , ,
properties (23)
authorjimbo88
permlinkre-thorondor-re-jefpatat-re-thorondor-gridcoin-guide-for-odroid-running-boinc-20170826t160944111z
categorygridcoin
json_metadata{"tags":["gridcoin"],"image":["https://steemitimages.com/DQmXBzEgiYDVBciEHK4Nc6AkQ9N56G4xpfDMAMRyRNsEiLw/IMG_20170826_090611951.jpg"],"app":"steemit/0.1"}
created2017-08-26 16:09:48
last_update2017-08-26 16:11:15
depth3
children3
last_payout2017-09-02 16:09:48
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length625
author_reputation421,855,845,165
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,946,868
net_rshares5,360,213,388
author_curate_reward""
vote details (5)
@jstoddard ·
Interesting. I have an old HTC phone running BOINC android with benchmarked 798.32 million ops/sec. It has a dual core ARMv7 processor that I limit to 60 C. I have experimented with other devices such as an octocore tablet, PC, laptop, etc. I have found that the more powerful devices get throttled back as the chips heat up (I don't use active cooling). If you have an old phone laying around, try running BOINC on it. I think power and cost-wise, you will be pleasantly surprised. In other words, I bet 20x $5 android phones running CPU Boinc tasks will beat the best $100 single board computer.
properties (22)
authorjstoddard
permlinkre-thorondor-gridcoin-guide-for-odroid-running-boinc-20170830t132535925z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-30 13:25:36
last_update2017-08-30 13:25:36
depth1
children1
last_payout2017-09-06 13:25:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length597
author_reputation5,776,648,449
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,339,521
net_rshares0
@thorondor ·
I doubt that, but will check it out at some point :)
properties (22)
authorthorondor
permlinkre-jstoddard-re-thorondor-gridcoin-guide-for-odroid-running-boinc-20170830t180737816z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-30 18:07:36
last_update2017-08-30 18:07:36
depth2
children0
last_payout2017-09-06 18:07:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation750,222,434,745
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,365,467
net_rshares0
@kubn2 ·
Nice article @thorondor but I have question about performance because  your floating point operations and  integer operations are really high. So can you write your MAG? I know your mag dropped because problems and etc but what was your highest magnitude? :)
properties (22)
authorkubn2
permlinkre-thorondor-gridcoin-guide-for-odroid-running-boinc-20170826t165412750z
categorygridcoin
json_metadata{"tags":["gridcoin"],"users":["thorondor"],"app":"steemit/0.1"}
created2017-08-26 16:54:12
last_update2017-08-26 16:54:12
depth1
children5
last_payout2017-09-02 16:54:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length258
author_reputation1,035,080,836
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,950,371
net_rshares0
@jimbo88 · (edited)
My three combine for just over 34k RAC on Universe@Home ([link](http://universeathome.pl/universe/hosts_user.php?sort=expavg_credit&rev=0&show_all=0&userid=30907)). This currently equates to almost 36 mag, or 11.9 each.  Keep in mind this is very fluid. Because of increased competition, this is less than half the magnitude I was getting in May.  Also, the mag unit (currently 0.175 +35% boost) can make a major difference too.  Also, project selection can really make some big differences.
👍  ,
properties (23)
authorjimbo88
permlinkre-kubn2-re-thorondor-gridcoin-guide-for-odroid-running-boinc-20170827t201821445z
categorygridcoin
json_metadata{"tags":["gridcoin"],"links":["http://universeathome.pl/universe/hosts_user.php?sort=expavg_credit&rev=0&show_all=0&userid=30907"],"app":"steemit/0.1"}
created2017-08-27 20:18:24
last_update2017-08-27 20:18:48
depth2
children0
last_payout2017-09-03 20:18:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length491
author_reputation421,855,845,165
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,057,325
net_rshares3,184,095,000
author_curate_reward""
vote details (2)
@thorondor ·
I will follow up with some numbers as soon as things stablize (+ there is the mag boost currently).
To give you a slight reference point: I had it running for 5 consecutive days at one point and the mag increased by 5.5 mag in that timeframe.
👍  
properties (23)
authorthorondor
permlinkre-kubn2-re-thorondor-gridcoin-guide-for-odroid-running-boinc-20170827t060110584z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-27 06:01:06
last_update2017-08-27 06:01:06
depth2
children3
last_payout2017-09-03 06:01:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length242
author_reputation750,222,434,745
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,997,744
net_rshares1,160,652,818
author_curate_reward""
vote details (1)
@kubn2 ·
Thanks for the reply! :) And how about your estimated GRC per day with 5,5 mag? I saw someone with raspberry pi 3 have 1,5-2 GRC per day but this thing is more powerfull so Im curious.
properties (22)
authorkubn2
permlinkre-thorondor-re-kubn2-re-thorondor-gridcoin-guide-for-odroid-running-boinc-20170827t091542374z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-27 09:15:42
last_update2017-08-27 09:15:42
depth3
children2
last_payout2017-09-03 09:15:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation1,035,080,836
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,009,012
net_rshares0
@scalextrix ·
$0.33
Nice, I run my Pi2 and Pi3 with tiny heatsinks and a couple of small noctua fans I had laying around, I got some USB to 5V fan cables and used those, the 5V is sweet because it keeps the fan speeds low for totally silent operation.

I also run Gridcoin on the Pi3 besides BOINC.

Here is a picture of my Pi2 in my electricity cupboard, running BOINC, and logging solar PV generation data to the SolarCoin blockchain, yes all my kit is solar powered :)

![What is it.jpg](https://steemitimages.com/DQmZ9WEWJzdoYDL7kQgYXEuA9vvJ6uzFs7sKagq3omtF4NQ/What%20is%20it.jpg)
👍  , , , , , , , , , , ,
properties (23)
authorscalextrix
permlinkre-thorondor-gridcoin-guide-for-odroid-running-boinc-20170826t151846540z
categorygridcoin
json_metadata{"tags":["gridcoin"],"image":["https://steemitimages.com/DQmZ9WEWJzdoYDL7kQgYXEuA9vvJ6uzFs7sKagq3omtF4NQ/What%20is%20it.jpg"],"app":"steemit/0.1"}
created2017-08-26 15:18:48
last_update2017-08-26 15:18:48
depth1
children1
last_payout2017-09-02 15:18:48
cashout_time1969-12-31 23:59:59
total_payout_value0.254 HBD
curator_payout_value0.072 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length564
author_reputation17,941,237,668,958
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,943,114
net_rshares81,164,455,610
author_curate_reward""
vote details (12)
@thorondor ·
Love it!
properties (22)
authorthorondor
permlinkre-scalextrix-re-thorondor-gridcoin-guide-for-odroid-running-boinc-20170827t055624739z
categorygridcoin
json_metadata{"tags":["gridcoin"],"app":"steemit/0.1"}
created2017-08-27 05:56:21
last_update2017-08-27 05:56:21
depth2
children0
last_payout2017-09-03 05:56:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation750,222,434,745
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,997,468
net_rshares0
@steemitboard ·
Congratulations @thorondor! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/voted.png)](http://steemitboard.com/@thorondor) Award for the number of upvotes received

Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

> By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
👍  ,
properties (23)
authorsteemitboard
permlinksteemitboard-notify-thorondor-20170826t221050000z
categorygridcoin
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-08-26 22:10:48
last_update2017-08-26 22:10:48
depth1
children0
last_payout2017-09-02 22:10:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length697
author_reputation38,975,615,169,260
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,972,868
net_rshares1,186,380,800
author_curate_reward""
vote details (2)
@steemitboard ·
Congratulations @thorondor! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/voted.png)](http://steemitboard.com/@thorondor) Award for the number of upvotes received

Click on any badge to view your own Board of Honor on SteemitBoard.
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

> By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-thorondor-20170907t233341000z
categorygridcoin
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-09-07 23:33:39
last_update2017-09-07 23:33:39
depth1
children0
last_payout2017-09-14 23:33:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length697
author_reputation38,975,615,169,260
root_title"Gridcoin Guide For Odroid (running BOINC)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,198,326
net_rshares0