Bitcoin Forum
May 28, 2024, 09:46:11 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 16 17 18 19 20 21 »
181  Economy / Computer hardware / Re: FS: RaspberryPi RGB Positive LCD & rPi Cases on: October 31, 2013, 03:10:36 AM
Updated prices to reflect market and original post to reflect items sold.
~Thanks
182  Bitcoin / Mining software (miners) / Re: Linux mining distro for the Raspberry PI - MinePeon on: October 31, 2013, 12:53:11 AM
A question to Neil:

As I can't get my Bitfury to work with MinePeon (via GPIO/SPI) using MinePeon's distro, but I have it working with cgminer in a Debian distro sent by the seller, how can I install MinePeon (from the scratch) into that Debian SD, to try to see if MinePeon can "control" that cgminer?

@ct1aic, I'm going to try to make a build of CGMiner with the drivers they are using. Give me a little bit and I'll PM you a download link so you can try it (since I don't have a unit to test).
183  Bitcoin / Group buys / Re: [OPEN] Group Buy #19 USB Miners 0.035 BTC or less! Shipping to USA addresses on: October 30, 2013, 05:50:27 PM
Got it. 3 days priority mail being shipped today. Tracking numbers later tonight as I am getting all orders shipped out today. Thank you. SSB

Fastest shipper around Wink
184  Bitcoin / Group buys / Re: [CLOSED] 0.9 OR LESS ~ BPMC "BLUE FURY" 2.7 GH/s USB MINER! SSINC GB#9! on: October 30, 2013, 04:46:23 AM
ssinc has units currently clearing US customs.

WOOT!


Hey ssinc, I would like to donate my compensation to your beer/aggravation fund!

Thanks jdkackley! Cheesy

I'll pick up a Dogfish Head 120 Min IPA tomorrow afternoon and will be drinking it in your honor good sir!  Wink




hmm... too bad you don't live down in Florida... Cigar City Brewery is 10min away from my house, hehe... love trying their new beers
185  Bitcoin / Hardware / Re: Blue Fury Miners V2 2.6Gh/s on: October 30, 2013, 02:56:24 AM
Great news.

5 group buy leaders have had units shipped out today.
ssinc units are clearing customs in the US and Maidak has units on the way Via express. I have contacted some people in response to requiring phone numbers for shipping units to please get back to me promptly. We are still building units and I expect we might have around 100 left over. If people are interested in purchasing them send me a private message.

Thanks
Cheesy All I could think of due to the red text:
http://www.youtube.com/watch?v=1D1cap6yETA
Cheesy
186  Bitcoin / Group buys / Re: DRILLBIT SYSTEM Miners - 2.7 GH/s thumbs 0.65 BTC, 21.7 GH/s boards 2 BTC on: October 30, 2013, 02:25:53 AM
Here's a few links:

Cheaper Ball-Bearing Higher CFM Fans:
http://www.newegg.com/Product/Product.aspx?Item=N82E16835119045

Arctic Fluid-Bearing Higher CFM Fans:
http://www.newegg.com/Product/Product.aspx?Item=N82E16835186079

Here's the Xigmatek 2-pack:
http://www.newegg.com/Product/Product.aspx?Item=N82E16835233105
187  Bitcoin / Group buys / Re: DRILLBIT SYSTEM Miners - 2.7 GH/s thumbs 0.65 BTC, 21.7 GH/s boards 2 BTC on: October 30, 2013, 02:18:07 AM
That Coolermaster fan you linked is only sleeve bearing, that wont have a very good life expectancy. Best to go with ball bearing fans.



Thanks for the pointer. Do you have a good suggestion?

I've been using fluid bearing fans since 2007, I still have 10 from my old gaming case I built (NZXT fans) which I'm still using to this day, you can find some cheap fluid bearing fans on NewEgg, I've been using Xigmatek or SilenX fans lately, NewEgg has some Xigmatek 120mm 2-pack for $14.00 (currently have these running on my erupter farm).
188  Bitcoin / Mining software (miners) / Re: Linux mining distro for the Raspberry PI - MinePeon on: October 30, 2013, 12:28:50 AM
not really, it's just cleaner to keep all the settings in a single file.
189  Economy / Exchanges / Re: ***CEX.IO Cloud mining official page*** on: October 29, 2013, 11:32:31 PM
We are glad to announce that the API problem is fixed.
Please check and write back if everything is ok Smiley

Woot! Shareholders feature started working! Awesome!
190  Bitcoin / Mining software (miners) / Re: Linux mining distro for the Raspberry PI - MinePeon on: October 29, 2013, 11:19:37 PM
I just got 0.2.4 running with my blade using bfgminer as a statum proxy using the -http-port option in the miner startup settings. Below is what mine looks like, I am just running a blade with this. On the blade you just point it to your minepeon ip address. Hope that this helps someone looking to do the same.


Code:
#!/bin/bash
sleep 10
/usr/bin/screen -dmS miner /opt/minepeon/bin/bfgminer --http-port 8330 -c /opt/minepeon/etc/miner.conf

Just edit the /opt/minepeon/etc/miner.conf

Code:
"http-port": 8330


Edit:
 
This is the default miner.conf:
Code:
{
    "algo": "c",
    "api-listen": true,
    "api-port": "4028",
    "expiry": "120",
    "hotplug": "5",
    "log": "5",
    "no-pool-disable": true,
    "queue": "1",
    "scan-time": "60",
    "shares": "0",
    "kernel-path": "\/opt\/minepeon\/bin",
    "api-allow": "W:0\/0",
    "pools": [
        {
            "url": "stratum.btcguild.com:3333",
            "user": "MinePeon_Donate",
            "pass": "MinePeon_Donate"
        },
        {
            "url": "pool.50btc.com:8332",
            "user": "neil@mineforeman.com",
            "pass": "Donate"
        },
        {
            "url": "us.ozco.in:3333",
            "user": "minepeon.donate",
            "pass": "donate"
        }
    ]
}


You would add it in like so:
Code:
{
    "algo": "c",
    "api-listen": true,
    "api-port": "4028",
    "http-port": 8330,
    "expiry": "120",
    "hotplug": "5",
    "log": "5",
    "no-pool-disable": true,
    "queue": "1",
    "scan-time": "60",
    "shares": "0",
    "kernel-path": "\/opt\/minepeon\/bin",
    "api-allow": "W:0\/0",
    "pools": [
        {
            "url": "stratum.btcguild.com:3333",
            "user": "MinePeon_Donate",
            "pass": "MinePeon_Donate"
        },
        {
            "url": "pool.50btc.com:8332",
            "user": "neil@mineforeman.com",
            "pass": "Donate"
        },
        {
            "url": "us.ozco.in:3333",
            "user": "minepeon.donate",
            "pass": "donate"
        }
    ]
}
191  Bitcoin / Mining software (miners) / Re: Linux mining distro for the Raspberry PI - MinePeon on: October 29, 2013, 11:01:39 PM
I can't seem to remember what the commands were to update bfgminer, any care to enlighten me? I would like to update to 3.4.0 because I have OCD  Wink

If you want to compile it yourself...

Code:
git clone https://github.com/luke-jr/bfgminer
cd bfgminer
sudo ./autogen.sh
sudo ./configure
make
mv bfgminer /opt/minepeon/bin

* on the mv bfgminer, make sure you're just moving the executable, not the folder, (ie: make sure you're still in the bfgminer folder).


Edit: (Or listen to Neil and do a git pull... Cheesy he was 3sec faster at me in response, lol )
192  Bitcoin / Hardware / Re: [ANN] Bi•Fury | 5+ GH/s USB Miner [FASTEST USB MINER IN THE WORLD] on: October 29, 2013, 07:11:52 PM
definitely will be following this thread now Smiley

looks like great work thus far...
193  Economy / Computer hardware / Re: FS: Soldered RaspberryPi RGB Positive LCD & RGB Negative LCD on: October 29, 2013, 06:00:52 AM
Updated prices / Added more / Added Picture
194  Bitcoin / Mining software (miners) / Re: Linux mining distro for the Raspberry PI - MinePeon on: October 29, 2013, 05:13:30 AM
Neil, do you have a BeagleBoard at your disposal? Just curious as I'm considering buying one soon.
195  Bitcoin / Group buys / Re: [OPEN] Group Buy #19 USB Miners 0.035 BTC or less! Shipping to USA addresses on: October 29, 2013, 05:10:57 AM
can you sell 50 usb sticks without a hub?

hehe, if he buys 50 and doesn't want the hub, I'll take it and pay shipping Cheesy
196  Bitcoin / Mining software (miners) / Re: Linux mining distro for the Raspberry PI - MinePeon on: October 29, 2013, 04:59:43 AM
I know this probably isn't the best place to ask, but are there any USB plug n play displays that can be used with the Pi?  Found a 3.5" car display and the displays on rasppilcd.com but I'm looking for something closer to the 3.5" that already is USB.  Feel free to shoot me a PM rather than reply on here.

While I'm sure one could be found, the issue would more than likely be drivers... (btw, rasppilcd.com doesn't seem to work for me?)
197  Economy / Service Announcements / Re: Piper: The Raspberry Pi Paper Wallet Printer is now taking orders! on: October 29, 2013, 04:50:47 AM
How are there no posts on this? This product just seems epic!

It's a novel idea, however the parts cost is under $100 (buying from a company that still charges a good 50% over wholesale). I will say though, it's definitely a great package deal for those who don't have the know-how to put one together themselves.
198  Bitcoin / Hardware / Re: Blue Fury Miners V2 2.6Gh/s on: October 29, 2013, 04:40:43 AM
too many people in this thread need some of this... http://www.youtube.com/watch?v=LTGdAGPDBpo
199  Bitcoin / Group buys / Re: DRILLBIT SYSTEM Miners - 2.7 GH/s thumbs 0.65 BTC, 21.7 GH/s boards 2 BTC on: October 29, 2013, 02:53:15 AM
http://www.robotshop.com/en/cytron-atx-power-supply-breakout-board-right-angle.html

Here is what I use for my BitFury starter kit.  Works like a charm and looks better than a paperclip.

nice find... I have a few uses for that which would make my life easier on some other things not relating to mining...
200  Economy / Computer hardware / Re: WTS: Apple Magic Mouse on: October 28, 2013, 08:28:55 PM
BTC0.2 Shipped within the US, brand new, never used, tired of seeing it sit around...
Pages: « 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 16 17 18 19 20 21 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!