Bitcoin Forum
November 08, 2024, 03:45:11 PM *
News: Latest Bitcoin Core release: 28.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2] 3 4 5 »
21  Bitcoin / Bitcoin Discussion / Re: Report on the Bitcoin Foundation's Trip to Washington D.C. on: August 29, 2013, 08:53:39 PM
The Bitcoin Foundation won't disclose what legislators they met with on day 2 of their trip.

http://thegenesisblock.com/bitcoin-foundation-on-capitol-hill-day-two-legislators/

Poking at the beast.

           USA                                   Bitcoin Foundation
              V                                         V
http://bradleysanimalplace.files.wordpress.com/2008/10/pd_elephant_mouse_071115_mn.jpg


"Poking at the beast" may not really be an apt analogy as far as big beats small, because MythBusters showed that elephants give a wide berth to mice if they see them: https://www.youtube.com/watch?v=wXiMs65ZAeU

Would be interesting to figure out what analogy IS apt, though.

22  Bitcoin / Mining software (miners) / Re: CGMINER ASIC FPGA GPU overc monit fanspd RPC linux/win/osx/mip/r-pi 3.4.0 on: August 26, 2013, 01:43:34 AM
Hi Kano, just got a quick question. With rpi and BE, does 3.4.0 works great on it? Or should go with an earlier version? And with the latest updates, should I go with arch or raspbian? As I saw the LCD module in adafruit with raspbian seems nice Smiley
3.4.0 works great on RPi and BE, and arch is a better choice.
Thanks, I will try to set it up. I did have a look already in Kano website. How do I add an auto start cgminer when power up the rpi and load a config?

1. Install screen and pgrep
2. Create "cgminer" user (assume /home/cgminer is home directory for new cgminer user). On debian-based systems you probably need to add cgminer to the plugdev group ("adduser cgminer plugdev").
3. Login as cgminer user (possibly via "sudo su cgminer" etc)
4. Setup /home/cgminer/.cgminer/cgminer.conf
5. Test that running cgminer with no command line options does what you expect.
5. Create /home/cgminer/daemon.sh

Code:
#!/bin/bash

log () {
    logger -p local0.notice -t $1/daemon.sh "$*"
}

export HOME=$(dirname $(readlink -e $0))
cd $HOME

if ! pgrep -u cgminer cgminer >/dev/null; then
    log cgminer is dead
    screen -dmS cgminer $HOME/bin/cgminer
else
    log cgminer lives
fi


daemon.sh checks if the "cgminer" user is running a program called "cgminer". If so, then nothing happens. Otherwise it starts a new detached screen session running cgminer. You may have to adjust $HOME/bin/cgminer to your machine. (I use ./configure --prefix=/home/cgminer and make install so my cgminer binaries end up in /home/cgminer/bin/cgminer)

6. chmod +x /home/cgminer/daemon.sh
7. Add the following line to the crontab to run /home/cgminer/daemon.sh every minute (run "crontab -e" as cgminer to edit crontab)
Code:
* * * * * /home/cgminer/daemon.sh

In the future I'd like to add use of a chroot, but I haven't had time to work on that yet.
23  Bitcoin / Mining software (miners) / Re: CGMINER ASIC FPGA GPU overc monit fanspd RPC linux/win/osx/mip/r-pi 3.4.0 on: August 23, 2013, 01:04:56 AM
Since upgrading to cgminer 3.4.0, my Jalapeno went from ~5.7 GH/s to ~5.5 GH/s. Should I let it cool down and restart it? I think something like that was discussed in this thread before.

You can isolate whether it is the Jalapeno startup or changes in 3.4.0 by comparing hash rates with your previous version of cgminer.
24  Economy / Securities / Re: ASICMINER Speculation Thread on: August 21, 2013, 06:52:46 PM
I think the margins on hardware are going to be much lower. There was a lot more to throw around when USB Eruptors were 2btc/each (and blades priced equivalently). Margins are going to be crushed.

The biggest threat is that the mining calculators got much, much better so buyers can see what's up.
25  Bitcoin / Mining software (miners) / Re: CGMINER ASIC FPGA GPU overc monit fanspd RPC linux/win/osx/mip/r-pi 3.3.4 on: August 16, 2013, 03:50:32 PM
I've been away for a while and decided to give 3.3 another shot since kano et al are singing its praises everywhere.

3.3.4 using libusb-1.0.16-rc10 compiled from sourceforge still shuts down half of my 4x AM USB eruptors when running on Debian amd64 with USB disconnects. If there's some sort of logs you would like let me to post, let me know what you would like to see, but compiling a newer libusb absolutely *does not* solve the problem.

Back to 3.1.1 where everything works fine.
26  Economy / Securities / Re: ASICMINER: Entering the Future of ASIC Mining by Inventing It on: August 01, 2013, 04:32:26 PM
Allow me to posit a conspiracy...

We do know that AM was the target of the DDoS attacks that were patched recently in bitcoin-qt. So, clearly AM's mining operation is in someone's crosshairs. It's entirely possible that there is a shadowy pool-level collision to preferentially ignore/delay acknowledgment of AM blocks, or perhaps some new form of network attack that disadvantages propagation of AM blocks. That could explain the orphan rate, and AMs use of new IPs and the lack of tagging.  Shocked Shocked Cool Grin Shocked Sad Shocked Cheesy Wink Lips sealed Lips sealed Lips sealed
27  Economy / Securities / Re: ASICMINER Speculation Thread on: July 24, 2013, 08:33:11 PM
the one that just happened with every buy order above 4.55 got filled.

Price went from 4.8 to 4.55

TAT went to .0438

Volume was up quite a bit even before burnside made that post. But AM ranges 0.3/day quite often. I guess I just wouldn't have called that a "crash" when it still fits within normal variance and doesn't look extraordinary when staring at the charts. I even doubt it's lower than it was this time last week. But if you want to feed a panic so you can buy, by all means go ahead.

Now, if you want better reasons to sell, perhaps the batch of 10,000 Avalon chips buys that were delivered today. http://thegenesisblock.com/10000-bitcoin-asic-chips-arrive-in-switzerland-3-ths/
28  Economy / Securities / Re: ASICMINER Speculation Thread on: July 24, 2013, 07:59:05 PM
I guess the price crash on BTCT answers my question...

What crash?
29  Bitcoin / Mining software (miners) / Re: CGMINER ASIC FPGA GPU overc monit fanspd RPC linux/win/osx/mip/r-pi 3.3.1 on: July 24, 2013, 06:50:31 PM
On debian-derived systems you can install the apt-file packages to allow search for packages that provide specific files.
Your error message is about missing libusb.h. I'm not on a pi, but on my machine:
Code:
$ apt-file search libusb.h
apcupsd-doc: /usr/share/doc/apcupsd/examples/libusb.h
libusb-1.0-0-dev: /usr/include/libusb-1.0/libusb.h

Thank you for your help, but I'm still stuck.  (Full detail included here to help other noobs reading this.) 
Code:
pi@raspberrypi /usr/src/cgminer $ sudo apt-get install apt-file
  [... lots of lines deleted here ...]

pi@raspberrypi /usr/src/cgminer $ apt-file search libusb.h
E: The cache is empty. You need to run 'apt-file update' first.

pi@raspberrypi /usr/src/cgminer $ apt-file update
apt-file is now using the user's cache directory.
If you want to switch back to the system-wide cache directory, run 'apt-file purge'
  [... lots of lines deleted here ...]

pi@raspberrypi /usr/src/cgminer $ apt-file search libusb.h
apcupsd-doc: /usr/share/doc/apcupsd/examples/libusb.h
libusb-1.0-0-dev: /usr/include/libusb-1.0/libusb.h

pi@raspberrypi /usr/src/cgminer $ sudo apt-get install libusb-1.0-0-dev
Reading package lists... Done
  [... lots of lines deleted here ...]

pi@raspberrypi /usr/src/cgminer $ gcc api-example.c -I compat/jansson -o cgminer-api
In file included from api-example.c:26:0:
miner.h:121:22: fatal error: libusb.h: No such file or directory
compilation terminated.

I would expect something like "-I /usr/include/libusb-1.0" in the compile command. Maybe you need to re-run ./configure?
30  Bitcoin / Mining software (miners) / Re: CGMINER ASIC FPGA GPU overc monit fanspd RPC linux/win/osx/mip/r-pi 3.3.1 on: July 24, 2013, 05:07:24 PM
On debian-derived systems you can install the apt-file packages to allow search for packages that provide specific files.

Your error message is about missing libusb.h. I'm not on a pi, but on my machine:

Code:
$ apt-file search libusb.h
apcupsd-doc: /usr/share/doc/apcupsd/examples/libusb.h
libusb-1.0-0-dev: /usr/include/libusb-1.0/libusb.h
31  Bitcoin / Pools / Re: [1400GH/s] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: July 24, 2013, 04:47:06 PM
Idk the celerons, atoms and i5s I've used are trash

I'm running p2pool/bitcoind/altcoinds/cgminer on an Intel Next Unit of Computing with a Celeron 847 @ 1.10GHz, 4GB RAM with 4x AsicMiner USB Eruptors. I had to move the blockchains (bitcoin, devcoin, namecoin, ixcoin) to an external USB hard drive (system drive is 32GB SSD). It took some tweaking, but my get work latency is ~0.2-0.3 and I see DOA of 1.5% and 101.5% efficiency. CPU load seems pretty low (~80-90% idle mostly). Seems fine to me. Biggest problem is that my share luck seems to be inversely proportional to p2pool's block luck. Wink
32  Bitcoin / Mining software (miners) / Re: CGMINER ASIC FPGA GPU overc monit fanspd RPC linux/win/osx/mip/r-pi 3.3.1 on: July 17, 2013, 12:11:58 AM
3.2+ is doing that.  It no longer uses the ttyUSB devices so it removes them to disable the driver so that cgminer can use raw USB through libusb.

Yes, I concluded it was the desired behavior. Just being complete in reporting everything this time. Cheesy I mostly wanted to clarify that the problem does indeed exist without USB 3.0 anywhere in the picture and it only seems to show up when more than one eruptor is installed. When the other user mentioned a problem when using an eruptor+fpga, it made me think that perhaps there's just some problem using eruptors with multiple devices on 3.2.x.

I know you have a large eruptor setup. Are you running 3.2.x? Your recommendation to someone else to run 3.1.1 a while ago is why I ended up trying that. (I saw you mention your eruptor farm in a p2pool thread and went through your post history to see if I was missing a step--initially I suspected a p2pool problem, but the 3.1.1 recommendation was on the money)
33  Bitcoin / Mining software (miners) / Re: CGMINER ASIC FPGA GPU overc monit fanspd RPC linux/win/osx/mip/r-pi 3.3.1 on: July 17, 2013, 12:00:09 AM
I've had a similar problem with cgminer 3.3.2

There's a 3.3.2?  I'm still using 3.3.1, which is working great for me with USB Erupters.  Of course I only have 15 of them with USB 2.0 Hubs.

Opps I think I meant 3.3.1, but mostly I meant latest master from github (805672fb51f4219e8c5848dc761509d32bffde9f -- I think it identifies itself as 3.3.2, sorry I forgot it wasn't released yet). I tried master from github first when I couldn't get 3.3.1 to work. I was about to blame the hub when I decided to try building 3.1.1 as a hail mary.

They're still working on the USB 3.0 Hub support.  Which was the reason I bought USB 2.0 Hubs.

Glad your working at least.
Sam

For me USB 3.0 hubs do not work in USB 3.0 slots, but if I plug them into USB 2.0 slots they work fine.  It might be worth a try if you already have the hardware.

Oh, right. I forgot to mention that I excluded the hub as the problem before going to 3.1.1 by reproducing the findings with the USB Eruptors plugged in directly to the computer. I observed the same behavior where individually they work fine but if two were installed each device would mine for a bit and then enter into some sort of standby mode with solid leds (they don't both enter that state at the same time--one will get there sooner than the other). Then after a few seconds both will start hashing again simultaneously. That pattern of hashing in spurts and stalling just keeps repeating itself. I didn't time it but my guess is ~15-30sec. The computer itself is an Celeron-based Intel NUC that only has USB 2.0 ports.

I don't know if it matters but the the second miner came from BTCguild and was "branded" (I assume via the Luke-JR method) but the first comes from CanaryInTheMine and is unbranded. cgminer's udev rules seem to work fine with both as far as I can tell.

Looking back through the logs did finally notice one thing. When running the 3.2.x or github version, this happens once per reboot when cgminer is starting up:

Jul 16 00:47:02 xxx kernel: [   10.527272] cp210x ttyUSB0: cp210x converter now disconnected from ttyUSB0
Jul 16 00:47:02 xxx kernel: [   10.527304] cp210x 2-1.1.2:1.0: device disconnected
Jul 16 00:47:02 xxx kernel: [   10.588515] cp210x ttyUSB1: cp210x converter now disconnected from ttyUSB1
Jul 16 00:47:02 xxx kernel: [   10.588549] cp210x 2-1.1.4:1.0: device disconnected

When this happens /dev/ttyUSB0 and /dev/ttyUSB1 disappear and never return. But cgminer 3.2.x is still able to hash in spurts. I had to reboot to get 3.1.1 to work.
34  Bitcoin / Mining software (miners) / Re: CGMINER ASIC FPGA GPU overc monit fanspd RPC linux/win/osx/mip/r-pi 3.3.1 on: July 16, 2013, 10:31:13 PM
I've had a similar problem with cgminer 3.3.2

There's a 3.3.2?  I'm still using 3.3.1, which is working great for me with USB Erupters.  Of course I only have 15 of them with USB 2.0 Hubs.

Opps I think I meant 3.3.1, but mostly I meant latest master from github (805672fb51f4219e8c5848dc761509d32bffde9f -- I think it identifies itself as 3.3.2, sorry I forgot it wasn't released yet). I tried master from github first when I couldn't get 3.3.1 to work. I was about to blame the hub when I decided to try building 3.1.1 as a hail mary.
35  Bitcoin / Mining software (miners) / Re: CGMINER ASIC FPGA GPU overc monit fanspd RPC linux/win/osx/mip/r-pi 3.3.1 on: July 16, 2013, 10:25:10 PM
Hello, i've a little problem, i'll try to explain.
I'm using rasp pi, and installed cgminer 3.3.1
I have 1 block erupter in a hub usb powered and a lancelot from blackarrow.

I've been using my block erupter a lot of days without problems.

Since I installed my lancelot, I tried with sudo cgminer and it starts working, but it seems the block erupter gets the first work, after that it gets in standby meanwhile the lancelot works fully. A 60 seconds the cgminer says the block erupter gets sick.

What can I do? Do you need something abot logs?

Please help!
Thanks in advantage

I've had a similar problem with cgminer from github on x86_64 debian 7.1 (wheezy) trying to get two AsicMiner USB eruptors to work (via Satechi 10-Port 5A USB 3.0 powered hub http://www.amazon.com/gp/product/B00B9KOCYA).

The setup works just fine with a single USB eruptor (either of them). When two are plugged in it behaves as you describe where the USB eruptors will each mine for a bit and then drop into standby mode (solid green LED) for a bit before starting up again. No errors in dmesg or anywhere. The effect for me was that mining with a single eruptor would give 330MH/s, but mining with two would give 215MH/s.

I finally solved this yesterday by downgrading to cgminer 3.1.1 (had to compile from source because libraries were missing in debian 7.1). They now both hash at full speed.
36  Economy / Securities / Re: ASICMINER Speculation Thread on: July 12, 2013, 06:20:56 PM
so, the new blades are pre-selling in China, sold several hundred, already.  Hopefully, FC will get these for sale this week so we can get these sales on the dividend!

for anyone keeping count:
217 minis @ 9.88 btc = 2144 btc
110 blades @ 18.88 btc = 2077 btc

total - 4221 btc = .0105 per share


I guess it'll work as an upper bound (the sales dividend could not be greater than that), but we don't know the cost to produce the devices.
37  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: July 11, 2013, 10:32:38 PM
Or milk,


You know where milk comes from, right? You know what those animals are fed, right? You know how much oil is used to support the growth of those crops, right? Then you know how all that stuff is moved around, right?

It's cool, bro. I feed my cows all-natural, organically grown & insecticide & gen-patent free free range grass.  That & bone meal, made from their mamma cows.  Corn feed is for sissies. Smiley

I just let mine graze on federal land.
38  Economy / Securities / Re: ASICMINER Speculation Thread on: July 11, 2013, 08:03:15 PM
There's a thread on reddit where they think they've found his facebook/photos. The evidence seems somewhat tenuous. It may well be old and discredited news for all I know.
39  Bitcoin / Hardware / Re: [Call to arms] Why don't you destroy BFL rather than QQ? on: July 11, 2013, 07:49:57 PM
I found the following mildly amusing in this thread's context:

https://en.wikipedia.org/wiki/Sycophant#Shift_in_meaning_in_modern_English

I'm not sure Xian01 intended either meaning, as both could apply only to BFL critics.
40  Bitcoin / Mining speculation / Re: ASIC resale value on: July 09, 2013, 08:50:38 PM
I can think of one other use for the usb erupters, but i'd rather not mention it. i'll let someone else open pandora's box. Shocked

Password cracking?
Lips sealed

Not really good for that unless you know of passwords which are 640 bit strings and contain a 32 bit incrementing nonce. 

In theory you could make a "general purpose" SHA256 ASIC which would be useful for brute forcing passwords as well as mining but it wouldn't be optimized for either and this isn't the approach taken by any ASIC developer.

Ha! I'll just use it to compute my salt for pretty hashed passwords.
Pages: « 1 [2] 3 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!