Bitcoin Forum
May 24, 2024, 04:39:59 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 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 [45] 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 »
881  Bitcoin / Mining software (miners) / Re: CGMINER ASIC miner monitoring RPC linux/win/osx/mips/arm/r-pi 4.2.3 on: April 15, 2014, 01:37:58 AM

This is the closest update for that windows build file and I at least put the details I got from the issues area on mxe's github page https://github.com/mxe/mxe/issues/338

Here https://github.com/techman05/cgminer/blob/master/windows-build.txt

I should probably try to add it into ckolivias/cgminer but most of my other files in my github fork of cgminer that I tried to tweak should be purged or put in the closet sot of speak

Thanks, this is what i looking for  Grin
882  Bitcoin / Hardware / Re: [ANN] Technobit 60 Ghs HEX16B(Bitfury v.2 based) 16 chip board design - 149 EUR on: April 15, 2014, 01:36:27 AM
Hi,

PLEASE I NEED HELP. I can't set up my new bitfury v2 on windows 7, HEXMINER says new proxy available please update. And clean_jobs FALSE What am I supposed to do ?

New proxy is available on slush pool webpage to download http://mining.bitcoin.cz/media/download/mining_proxy.exe

If you want cgminer for windows with technobit support, you may want to try it: https://bitcointalk.org/index.php?topic=569689.0

If you want to try TPLINK TL-MR3020, read this https://bitcointalk.org/index.php?topic=476326.0
883  Bitcoin / Mining software (miners) / Re: CGMINER ASIC miner monitoring RPC linux/win/osx/mips/arm/r-pi 4.2.3 on: April 14, 2014, 12:28:53 PM
I see, now i need to ask google about mxe  Cheesy or you maybe can add some guide to windows-build.txt  Roll Eyes
That file is horribly outdated from the GPU days and since I started cross compiling with mxe there is no way I'm going to try and build it directly on windows or any other way any more, sorry. In fact that windows build file wasn't even made by me if you read it, but a very dedicated user...

No problem  Wink
I will learn mxe step by step  Cheesy
884  Bitcoin / Mining software (miners) / Re: CGMINER ASIC miner monitoring RPC linux/win/osx/mips/arm/r-pi 4.2.3 on: April 14, 2014, 11:40:21 AM
After searching on google, look like i found the problem. http://msdn.microsoft.com/en-us/library/windows/desktop/ms737629%28v=vs.85%29.aspx
There is some wrong include on util.h line 32. Base on the article, winsock.h must be include before ws2tcpip.h.
Thanks for your investigating. I build all the official binaries with mxe, so it works either way, but I have shuffled things slightly based on that info and removed the windows.h include entirely. I have no idea what effect that will have on other build environments  Tongue

I see, now i need to ask google about mxe  Cheesy or you maybe can add some guide to windows-build.txt  Roll Eyes
885  Bitcoin / Hardware / Re: How to upgrade TPLINK TL-MR3020 firmware to technobit openwrt on: April 14, 2014, 09:40:11 AM
just upgraded the router to 0.3.2 as you showed it is newest version.
But after upgrade i see this

[Firmware Version] => 20140329
cgminer: 4_1_0_5ed45a0
Socket connect failed: Connection refused

What happend? Should i upgrade again? not with upgrade file but with factory file?


mm, they are not absolete for me, managing to buy used ones for 30 euros or less, so i am starting to stack them now Smiley



You need to fill in Hex3A3 Chip Count (Default: 16), Hex3A3 Chip Frequency (Default: 7000), Hex3A3 Chip Core Voltage mV (Default: 750), Hex3A3 Enable or Disable Chips (Default: 255) with their default value which is blank right now  Wink
886  Bitcoin / Hardware / Re: TECHNOBIT support tread + customer feedback on: April 14, 2014, 02:16:32 AM
Cgminer for windows with Technobit hardware support  Smiley


The link is updated, and I've made a small How-To here:
https://bitcointalk.org/index.php?topic=569689.0

Please test Wink

best
2GOOD
887  Bitcoin / Mining software (miners) / Re: CGMINER ASIC miner monitoring RPC linux/win/osx/mips/arm/r-pi 4.2.3 on: April 14, 2014, 12:58:25 AM

Sadly never found an answer to this. I tried to get this to go through with mingw with no luck. Its got to be something wierd with the current mingw version but all I got from the mingw newsgroup was that is was my fault mingw didn't work.  Search back a few months here for mentions of mingw and theres about 2 pages of attempts to get a solution that never came to flortition.

You may want to try mxe though then you'll need to find you way on their issues board where they did say it compiles for them with instruction they gave me in their issues area on github I haven't tried any further since u1's came to be supported

Thanks for the head up.

Edit:

After searching on google, look like i found the problem. http://msdn.microsoft.com/en-us/library/windows/desktop/ms737629%28v=vs.85%29.aspx
There is some wrong include on util.h line 32. Base on the article, winsock.h must be include before ws2tcpip.h.
Code:
#elif defined WIN32
          #include <ws2tcpip.h>
          #include <winsock2.h>

Other problem is  Windows.h header defaults to including the Winsock.h which will conflict with the declarations in the Winsock2.h.

So this is the adjustment.
Code:
#elif defined WIN32
#ifndef WIN32_LEAN_AND_MEAN
        #define WIN32_LEAN_AND_MEAN
        #endif

#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
        #include <iphlpapi.h>
        #include <stdio.h>


But then i got other error  Cheesy
Code:
  CCLD   cgminer.exe
cgminer-cgminer.o: In function `clean_up':
C:\MinGW\msys\1.0\home\Zinc\cgminer/cgminer.c:8794: undefined reference to `time
EndPeriod'
cgminer-cgminer.o: In function `hashmeter':
C:\MinGW\msys\1.0\home\Zinc\cgminer/cgminer.c:6096: undefined reference to `llro
und'
cgminer-cgminer.o: In function `clean_up':
C:\MinGW\msys\1.0\home\Zinc\cgminer/cgminer.c:8794: undefined reference to `time
EndPeriod'
cgminer-cgminer.o: In function `main':
C:\MinGW\msys\1.0\home\Zinc\cgminer/cgminer.c:9657: undefined reference to `time
BeginPeriod'
collect2.exe: error: ld returned 1 exit status
make[2]: *** [cgminer.exe] Error 1
make[2]: Leaving directory `/home/Zinc/cgminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/Zinc/cgminer'
make: *** [all] Error 2

888  Bitcoin / Mining software (miners) / Re: CGMINER ASIC miner monitoring RPC linux/win/osx/mips/arm/r-pi 4.2.3 on: April 13, 2014, 01:44:19 PM
Hi ck,

I got this error message while trying to compile cgminer for windows using mingw. Any clue?

"autoreconf -fvi" done without error
"CFLAGS="-O2 -msse2" ./configure" also done without error

Thanks  Smiley

Code:
Making all in ccan
make[2]: Entering directory `/home/Zinc/cgminer/ccan'
  CC     opt/libccan_a-helpers.o
  CC     opt/libccan_a-opt.o
  CC     opt/libccan_a-parse.o
  CC     opt/libccan_a-usage.o
  AR     libccan.a
make[2]: Leaving directory `/home/Zinc/cgminer/ccan'
make[2]: Entering directory `/home/Zinc/cgminer'
  CC     cgminer-cgminer.o
In file included from ./util.h:32:0,
                 from ./miner.h:27,
                 from ./sha2.h:36,
                 from cgminer.c:52:
c:\mingw\include\ws2tcpip.h:38:2: error: #error "ws2tcpip.h is not compatible
th winsock.h. Include winsock2.h instead."
 #error "ws2tcpip.h is not compatible with winsock.h. Include winsock2.h inste
."
  ^
In file included from ./util.h:32:0,
                 from ./miner.h:27,
                 from ./sha2.h:36,
                 from cgminer.c:52:
c:\mingw\include\ws2tcpip.h:147:8: error: redefinition of 'struct ip_mreq'
 struct ip_mreq {
        ^
In file included from c:\mingw\include\windows.h:93:0,
                 from cgminer.c:42:
c:\mingw\include\winsock.h:315:8: note: originally defined here
 struct ip_mreq {
        ^
In file included from ./util.h:32:0,
                 from ./miner.h:27,
                 from ./sha2.h:36,
                 from cgminer.c:52:
c:\mingw\include\ws2tcpip.h:390:13: error: expected '=', ',', ';', 'asm' or '_
ttribute__' before 'freeaddrinfo'
 void WSAAPI freeaddrinfo (struct addrinfo*);
             ^
c:\mingw\include\ws2tcpip.h:391:12: error: expected '=', ',', ';', 'asm' or '_
ttribute__' before 'getaddrinfo'
 int WSAAPI getaddrinfo (const char*,const char*,const struct addrinfo*,
            ^
c:\mingw\include\ws2tcpip.h:393:12: error: expected '=', ',', ';', 'asm' or '_
ttribute__' before 'getnameinfo'
 int WSAAPI getnameinfo(const struct sockaddr*,socklen_t,char*,DWORD,
            ^
make[2]: *** [cgminer-cgminer.o] Error 1
make[2]: Leaving directory `/home/Zinc/cgminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/Zinc/cgminer'
make: *** [all] Error 2
889  Bitcoin / Hardware / Re: [ANN] Technobit HEX16A2 - 24 Ghs - 78 EUR 48 h shippment on: April 13, 2014, 04:09:12 AM
rebooted and it still doesn't work.  It works fine with hexminer.   If I try the driver I use for hexminer on cgminer it says it can't initiate hex8 and says to install winusb.  When I install winusb and run cgminer it says no device detected and waiting for usb hotplug devices.  

Yeah, you are right. I hadn't try it my self before, so i didn't know if it work with HEX16C.

I just try it my self & it's not working, sorry. I am not sure what is the cause. Maybe this version only support HEX8.
Try to pm 2GOOD  Smiley
890  Bitcoin / Hardware / Re: TECHNOBIT support tread + customer feedback on: April 13, 2014, 03:46:49 AM
Running Hexminer could that be the problem?
As well wn 7 64b

Yup, that's maybe the problem.
You can try cgminer that compile by our friend 2GOOD https://bitcointalk.org/index.php?topic=476970.msg5903836#msg5903836

Thanks so much for the link gonna set it up in the am!
Peru here I come.

BTC Address?

Happy holiday then  Grin

Edit:
Some update from 2GOOD  Grin



Yes my bad, wrong binnary Smiley

The link is updated, and I've made a small How-To here:
https://bitcointalk.org/index.php?topic=569689.0

Please test Wink

best
2GOOD

891  Bitcoin / Hardware / Re: [ANN] Technobit HEX16A2 - 24 Ghs - 78 EUR 48 h shippment on: April 13, 2014, 03:43:16 AM
I only added my pool information to the config, do other changes need to be made?

Even without proper setting, cgminer should be able to detect the hex, try to reboot the windows
892  Bitcoin / Hardware / Re: [ANN] Technobit HEX16A2 - 24 Ghs - 78 EUR 48 h shippment on: April 13, 2014, 03:24:54 AM
I just replace the driver to winusb  with zadig right?  If so I did that and it shows up correctly in device manager.  If that's not the right driver could you link the correct one?

Yup.
893  Bitcoin / Hardware / Re: [ANN] Technobit HEX16A2 - 24 Ghs - 78 EUR 48 h shippment on: April 13, 2014, 03:08:43 AM
That's what I was wondering, because I downloaded his compiled cgminer and zadig.  The hex shows up fine in device manager, but cgminer doesn't seem to find it though.  I thought maybe I still needed to add a patch or something.

You need to replace the driver using zadig.
894  Bitcoin / Hardware / Re: TECHNOBIT support tread + customer feedback on: April 13, 2014, 01:33:21 AM
Running Hexminer could that be the problem?
As well wn 7 64b

Yup, that's maybe the problem.
You can try cgminer for windows with technobit support https://bitcointalk.org/index.php?topic=476970.msg5903836#msg5903836
895  Bitcoin / Hardware / Re: [ANN] Technobit HEX16A2 - 24 Ghs - 78 EUR 48 h shippment on: April 13, 2014, 01:31:08 AM
Will this work with cgminer on windows now?

Yes & No.

Yes if you use cgminer for windows with technobit support https://bitcointalk.org/index.php?topic=476970.msg5903836#msg5903836

No if you use original cgminer
896  Bitcoin / Hardware / Re: TECHNOBIT support tread + customer feedback on: April 12, 2014, 06:49:01 AM
For Rpi
Code:
1. sudo aptitude update
2. sudo aptitude upgrade
3. sudo aptitude install libudev-dev libusb-1.0-0-dev libfox-1.6-dev
4. sudo aptitude install autotools-dev autoconf automake
5. sudo aptitude install libtool libncurses-dev yasm
6. sudo aptitude install curl libcurl4-openssl-dev libjansson-dev screen
7. sudo aptitude install pkg-config uthash-dev make git-core

For Ubuntu
Code:
1. sudo apt-get update
2. sudo apt-get upgrade
3. sudo apt-get install libudev-dev libusb-1.0-0-dev libfox-1.6-dev
4. sudo apt-get install autotools-dev autoconf automake
5. sudo apt-get install libtool libncurses-dev yasm
6. sudo apt-get install curl libcurl4-openssl-dev libjansson-dev screen
7. sudo apt-get install pkg-config uthash-dev make git-core

Download cgminer 4.2.3
Code:
1. git clone https://github.com/ckolivas/cgminer.git
2. mv cgminer cgminer-4.2.3
3. cd cgminer-4.2.3
4. git checkout e574114682fe1edc344b7e291eb9d9497d26ef92
5. wget https://www.dropbox.com/s/ugg6nczel6hqmr6/e574114682fe1edc344b7e291eb9d9497d26ef92.patch
6. patch -p1 < e574114682fe1edc344b7e291eb9d9497d26ef92.patch
7. ./autogen.sh --enable-hexminera --enable-hexminerc --enable-hexminer3 --enable-hexminerb --enable-hexmineru --enable-hexminer8
8. make

Code:
{
"pools" : [
        {
                "url" : "stratum+tcp://stratum-lb-usa48.btcguild.com:3333",
                "user" : "user",
                "pass" : "123"
        }
]
,
"api-listen" : true,
"api-allow" : "R:127.0.0.1",
"api-mcast-port" : "4028",
"api-port" : "4028",
"expiry" : "120",
"hotplug" : "5",
"log" : "5",
"no-pool-disable" : true,
"queue" : "1",
"scan-time" : "60",
"shares" : "0",
"hexminera-voltage" : "1460",
"hexminera-options" : "16:480",
"hexminerc-voltage" : "1100",
"hexminerc-options" : "16:1500",
"hexminer3-voltage" : "750",
"hexminer3-options" : "16:7000",
"hexminer3-chip-mask" : "255",
"hexminerb-voltage" : "900",
"hexminerb-options" : "16:540",
"hexminer8-set-diff-to-one" : "0",
"hexminer8-chip-mask" : "255",
"hexminer8-voltage" : "1005",
"hexminer8-options" : "8:260",
"hexmineru-frequency" : "54",
"set_default_to_8" : true,
"kernel-path" : "/usr/local/bin"
}
897  Bitcoin / Hardware / Re: How to upgrade TPLINK TL-MR3020 firmware to technobit openwrt on: April 12, 2014, 06:33:06 AM
mm, i'll see what wil happen.
hope it wil not die

Yeah, maybe you will be more lucky  Wink
Anyway my HEX16C going to retired in next difficulty change.
I will strip the heatsink & FAN then attach to HEX8A  Grin
898  Bitcoin / Hardware / Re: How to upgrade TPLINK TL-MR3020 firmware to technobit openwrt on: April 12, 2014, 06:06:36 AM
lol, ok.

I did an upgrade to 4.2.2. yesterday, i'll do another one Smiley
Thx for info

Quote
* cgminer bug fixes:HEXa frequent HEXa usb disconnects, fast work queue restart and so on
Having frequent hexa disconnects indeed, was already wondering why Smiley

Another question: having also a HEXc, it does run at 20 GHs when using 1500/1100 mv, but when using 1600/1160 it does run aprox 23.3 GHs, is this normal behaviour?
with 1500/1100 3 chips are not really doing fine (staying behind, can see this in tplink router log), but when using 1600/1160 they hardly stay behind.

I guess chip number 3 is dead. If you run 1600/1160 for more long period, i bet that chip 3 will stop working.

I am also had 1 dead chip. I already try many higher setting but that's only work for short period.

899  Bitcoin / Hardware / Re: How to upgrade TPLINK TL-MR3020 firmware to technobit openwrt on: April 12, 2014, 05:44:43 AM
@Zich

Do u know how to see all the info when switching off the "toggle status switching"? (cgminer 4.2.2 tplink router 3020)

I would like to see all info all the time when using putty, not this switching

That not available with cgminer-4.2.2. However, marto just release new image with cgminer-4.2.3 which possible to display all on one line.

0.3.2 Avalon 3 release technobit.eu/0_3_2.rar
0.3.2 HEX3A3 - Avalon3 board release
* HEX3A3 defaults: --hexminer3-chip-mask 255 --hexminer3-voltage 800 --hexminer3-options 16:7000
* HEX3A3 --hexminer3-options 16:7000 16 is chip count per board and 7000 is desired speed per chip in Mh/s. 7000 equals to 7G per chip.
* cgminer patch to cgminer 4.2.3 rev e574114682fe1edc344b7e291eb9d9497d26ef92.patch
* cgminer bug fixes:HEXa frequent HEXa usb disconnects, fast work queue restart and so on
* openwrt – some compile optimizations for speed which increased image size a bit
* openwrt – dhcp client added finally:)
* openwrt updated to r40449
900  Bitcoin / Hardware / Re: Technobit HEX8A1 130GH/s Coincraft A1 based miner reviewed on: April 12, 2014, 04:18:18 AM
No submissions

Type " top " & post the screen shot.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 [45] 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!