After MineForeman has updated the repositories you can do the following.
ssh to your pi then type:
cd /opt/minepeon
git pull
(optional: update http gui)
cd /opt/minepeon/http
git pull
Reboot your Pi. Reconnect to the web gui. You can then look at the "Miner Version" field and see what version of cgminer is running.
Mineforeman usually waits a short period of time before updating the Minepeon repositories with the newest versions of cgminer and bfgminer. So the above instructions might not update you to cgminer version 3.11.0 yet. If you are like me and need the newest version right now, then you can compile cgminer yourself.
ssh to your pi then type:
wget http://ck.kolivas.org/apps/cgminer/cgminer-3.11.0.tar.bz2
tar -xvf cgminer-3.11.0.tar.bz2
cd cgminer-3.11.0
./configure --enable-hashfast
make
mv cgminer /opt/minepeon/bin/cgminer
Reboot your Pi. Reconnect to the web gui. You can then look at the "Miner Version" field and see what version of cgminer is running.
I hope this helps. I have been up for about 40 hours now. I'm on a caffeine rocket ship that is finally making it's reentry back to Earth. Please excuse me if the above post is hard to follow. I will pretty it up a bit, once I've landed.
i tried the 2nd method and i'm getting this error.
bzip2: (stdin) is not a bzip2 file.
tar: Child returned status 2
tar: Error is not recoverable: exiting now
and when i tried to do the first method with a git pull. i get permission denied
[minepeon@minepeon minepeon]$ git pull
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
I apologize for that. I don't have my Babyjet yet, but I have been using Minepeon for a while now. The below will fix your issues with the first option:
There is the problem, you need to edit that file (vi or nano, your preference) and change the line that says;-
url = [email protected]:MineForeman/minepeon-base.git
to
url = https://github.com/MineForeman/minepeon-base.git
Neil
The following will fix the second option:
bzip2 -cd cgminer-3.11.0.tar.bz2 | tar xvf -
I will edit my other post.