Bitcoin Forum
April 23, 2024, 02:20:19 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 [754] 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 ... 843 »
  Print  
Author Topic: OFFICIAL CGMINER mining software thread for linux/win/osx/mips/arm/r-pi 4.11.1  (Read 5805211 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic. (3 posts by 1+ user deleted.)
kano
Legendary
*
Offline Offline

Activity: 4466
Merit: 1798


Linux since 1997 RedHat 4


View Profile
June 12, 2014, 01:57:37 AM
 #15061

Hi Kano,
your FW for S2 works great on Ozco.in and Ghash.io pools but its nearly impossible to use Eligius pool.
Anyway thanks a lot.

I'm banned from posting in Eligius since wizkid didn't like people knowing the crap their pool does and deleted my posts.
So ... Eligius is low priority.

I still wonder why Eligius keeps such a high balance ...
https://blockchain.info/address/18d3HV2bm94UyY4a9DrPfoZ17sXuiDQq2B >400BTC
https://blockchain.info/address/1ChANGeATMH8dFnj39wGTjfjudUtLspzXr >200BTC
https://blockchain.info/address/14qgRxmyWwRweGY4mfjB5FRxr3Ak8Weu1w 1000 BTC
https://blockchain.info/address/1BRoZJLeLaR9T4PP2m1FJ5isqgQmhzMKBn 99.999 BTC

https://blockchain.info/address/18g3xd6WiEn6Wc88EK2B3oMnG7Y6KKwehM
That's an interesting payout

This one is interesting how it splits up a large amount into smaller and smaller amounts
https://blockchain.info/address/16qN6Xcm9tKoDTfeLjan5dgCEsDhWTxizK

Pool: https://kano.is - low 0.5% fee PPLNS 3 Days - Most reliable Solo with ONLY 0.5% fee   Bitcointalk thread: Forum
Discord support invite at https://kano.is/ Majority developer of the ckpool code - k for kano
The ONLY active original developer of cgminer. Original master git: https://github.com/kanoi/cgminer
"With e-currency based on cryptographic proof, without the need to trust a third party middleman, money can be secure and transactions effortless." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
dmaxl
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
June 12, 2014, 02:34:50 AM
 #15062

However, yes I tried p2pool early (3am) this morning and indeed everything exploded into a mess of errors both on the S2 and p2pool
Will look into that ...

I'll save you some time because I ran into this same issue, albeit with litecoin but the cause should be the same.

The cause is the sanity checks introduced by commit e1c5050734123973b99d181c45e74b2cbb00272e.
Empty string extranonce1 values now cause an error in util.c near line 2581:
Code:
nonce1 = json_array_string(res_val, 1);
if (!valid_hex(nonce1)) {
    applog(LOG_INFO, "Failed to get valid nonce1 in initiate_stratum");
    free(sessionid);
    goto out;
}

P2pool doesn't implement extranonce1 and sends an empty string, causing initiate_stratum to fail and cgminer to fallback to longpoll, which doesn't work with p2pool. Arguably this is more of a p2pool problem, but a possible workaround would be to restore previous behavior which just checks that nonce1 != NULL.
-ck (OP)
Legendary
*
Offline Offline

Activity: 4088
Merit: 1631


Ruu \o/


View Profile WWW
June 12, 2014, 02:42:30 AM
 #15063

However, yes I tried p2pool early (3am) this morning and indeed everything exploded into a mess of errors both on the S2 and p2pool
Will look into that ...

I'll save you some time because I ran into this same issue, albeit with litecoin but the cause should be the same.

The cause is the sanity checks introduced by commit e1c5050734123973b99d181c45e74b2cbb00272e.
Empty string extranonce1 values now cause an error in util.c near line 2581:
Code:
nonce1 = json_array_string(res_val, 1);
if (!valid_hex(nonce1)) {
    applog(LOG_INFO, "Failed to get valid nonce1 in initiate_stratum");
    free(sessionid);
    goto out;
}

P2pool doesn't implement extranonce1 and sends an empty string, causing initiate_stratum to fail and cgminer to fallback to longpoll, which doesn't work with p2pool. Arguably this is more of a p2pool problem, but a possible workaround would be to restore previous behavior which just checks that nonce1 != NULL.
Thanks for that, it's more lenient now in git.

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
iglasses
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


View Profile
June 12, 2014, 03:33:03 AM
 #15064

Can someone tell me what the heck I am doing wrong...I am trying to use the enable ants1 command at startup but I'm obviously not formatting it correctly because I keep getting 'unrecognized option'.

I am trying to use it like this...
cgminer --enable-ants1

What am I missing here?
The --enable-ants1 option is for when you build cgminer, not when you run it.

Well don't I feel like a dam fool. 
Thanks though!

ig

I only have a signature because I'm allowed.
kano
Legendary
*
Offline Offline

Activity: 4466
Merit: 1798


Linux since 1997 RedHat 4


View Profile
June 12, 2014, 09:29:49 AM
 #15065

However, yes I tried p2pool early (3am) this morning and indeed everything exploded into a mess of errors both on the S2 and p2pool
Will look into that ...

I'll save you some time because I ran into this same issue, albeit with litecoin but the cause should be the same.

The cause is the sanity checks introduced by commit e1c5050734123973b99d181c45e74b2cbb00272e.
Empty string extranonce1 values now cause an error in util.c near line 2581:
Code:
nonce1 = json_array_string(res_val, 1);
if (!valid_hex(nonce1)) {
    applog(LOG_INFO, "Failed to get valid nonce1 in initiate_stratum");
    free(sessionid);
    goto out;
}

P2pool doesn't implement extranonce1 and sends an empty string, causing initiate_stratum to fail and cgminer to fallback to longpoll, which doesn't work with p2pool. Arguably this is more of a p2pool problem, but a possible workaround would be to restore previous behavior which just checks that nonce1 != NULL.
Unfortunately, that's not the actual problem.
That's simply an unnecessary warning on the screen that ckolivas has now removed due to your help pointing it out.

I did mean this seriously:
Quote
... indeed everything exploded into a mess of errors both on the S2 and p2pool ...
I've not had time to track it down yet ...

Pool: https://kano.is - low 0.5% fee PPLNS 3 Days - Most reliable Solo with ONLY 0.5% fee   Bitcointalk thread: Forum
Discord support invite at https://kano.is/ Majority developer of the ckpool code - k for kano
The ONLY active original developer of cgminer. Original master git: https://github.com/kanoi/cgminer
plekhanov
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
June 12, 2014, 11:18:54 PM
 #15066

I tried building 4.3.5 on Centos 6.4 x86_64 (2.6.32-431.17.1.el6.x86_64) with Antminer S1 support.  The build stops in the bitmain driver:

  CC     cgminer-driver-bitmain.o
driver-bitmain.c: In function 'bitmain_read':
driver-bitmain.c:940: error: 'struct bitmain_info' has no member named 'device_fd'
driver-bitmain.c: In function 'bitmain_write':
driver-bitmain.c:971: error: 'struct bitmain_info' has no member named 'device_fd'
driver-bitmain.c: In function 'bitmain_parse_results':
driver-bitmain.c:1316: error: request for member 'min' in something not a structure or union
make[2]: *** [cgminer-driver-bitmain.o] Error 1

norgan
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250

Decentralize your hashing - p2pool - Norgz Pool


View Profile WWW
June 13, 2014, 01:01:58 AM
 #15067

are we able to update the cgminer on the s1 or is it best to leave with the older build?

Miner, tech geek, operator of NorgzPool - Sydney Australia P2Pool Node creator of p2pool fancy front end

Tips: 1NorganBbymShTN2MMpfGzRYJF8mcPeXjv Exchange BTC locally in Australia or Donate to p2pool miners
canford
Member
**
Offline Offline

Activity: 89
Merit: 10


View Profile WWW
June 13, 2014, 04:57:13 AM
 #15068

are we able to update the cgminer on the s1 or is it best to leave with the older build?

https://github.com/kanoi/cgminer-binaries/tree/master/AntS1

Пoльзyйтecь бecплaтнo и пишитe чтo вaм нyжнo yлyчшить:trd.ai
Bидeo, кaк пoльзoвaтьcя пpoeктoм:https://www.youtube.com/watch?v=pNhx715vOOk&feature=youtu.be
norgan
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250

Decentralize your hashing - p2pool - Norgz Pool


View Profile WWW
June 13, 2014, 05:08:53 AM
 #15069

are we able to update the cgminer on the s1 or is it best to leave with the older build?

https://github.com/kanoi/cgminer-binaries/tree/master/AntS1

yeah thanks I know about that one. but I just wondered if the main fork that says it supports s1 could be used to keep it more up to date. (I just like to have the latest lol)

Miner, tech geek, operator of NorgzPool - Sydney Australia P2Pool Node creator of p2pool fancy front end

Tips: 1NorganBbymShTN2MMpfGzRYJF8mcPeXjv Exchange BTC locally in Australia or Donate to p2pool miners
canford
Member
**
Offline Offline

Activity: 89
Merit: 10


View Profile WWW
June 13, 2014, 05:23:49 AM
 #15070

are we able to update the cgminer on the s1 or is it best to leave with the older build?

https://github.com/kanoi/cgminer-binaries/tree/master/AntS1

yeah thanks I know about that one. but I just wondered if the main fork that says it supports s1 could be used to keep it more up to date. (I just like to have the latest lol)

Not sure, I think you'd have to build the binary for the S1 yourself.  Kano might update github with an updated version, though I'm not aware of any S1-related improvements.  My AntMiners are all running 4.3.2a from Kano's build.

Пoльзyйтecь бecплaтнo и пишитe чтo вaм нyжнo yлyчшить:trd.ai
Bидeo, кaк пoльзoвaтьcя пpoeктoм:https://www.youtube.com/watch?v=pNhx715vOOk&feature=youtu.be
Buchi-88
Legendary
*
Online Online

Activity: 3780
Merit: 2496



View Profile
June 13, 2014, 08:13:31 AM
Last edit: June 13, 2014, 11:59:15 AM by Buchi-88
 #15071

Good day,

i have an existing problem with my configuration:

8 x Antminer U2 +
8 x BFx2 Bitfury

as soon as I both operate (. / configure - enable-bitfury - enable-icarus) remains Cgminer hang over again, and "watchdog" restarts the Raspberry new!

Once I only BFx2 Bitfury (. / Configure - enable-bitfury) used, runs the Cgminer 24/7.
Code:
 0: BXM 0       :                         | 3.810G / 3.751Gh/s WU:52.9/m
 1: BXM 1       :                         | 2.394G / 3.187Gh/s WU:44.6/m
 2: BXM 2       :                         | 3.136G / 3.167Gh/s WU:44.6/m
 3: BXM 3       :                         | 2.990G / 3.006Gh/s WU:42.1/m
 4: BXM 4       :                         | 3.767G / 3.819Gh/s WU:53.7/m
 5: BXM 5       :                         | 3.894G / 3.919Gh/s WU:55.0/m
 6: BXM 6       :                         | 3.952G / 3.932Gh/s WU:55.5/m
 7: BXM 7       :                         | 3.804G / 3.867Gh/s WU:54.4/m
--------------------------------------------------------------------------------
 [2014-06-12 23:19:41] Zero length string passed to valid_hex from in util.c ini
tiate_stratum():2609
 [2014-06-12 23:19:41] Zero length string passed to valid_hex from in util.c ini
tiate_stratum():2609


Exactly the same is in the use of Antminer (. / Configure - enable-icarus)?

The problem is only with the simultaneous use, is it possibly there is a compatibility issue between the two drivers?

I had raised the issue before, but still wanted to thoroughly test!

On the Pi is the newest Kernel installed.

regards

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
kano
Legendary
*
Offline Offline

Activity: 4466
Merit: 1798


Linux since 1997 RedHat 4


View Profile
June 13, 2014, 08:37:00 AM
 #15072

are we able to update the cgminer on the s1 or is it best to leave with the older build?

https://github.com/kanoi/cgminer-binaries/tree/master/AntS1

yeah thanks I know about that one. but I just wondered if the main fork that says it supports s1 could be used to keep it more up to date. (I just like to have the latest lol)
I'll not update the S1 until I've sorted out the S2 issues - since I've no idea if those issues will affect the S1 also - and the last S1 release is pretty stable.

Pool: https://kano.is - low 0.5% fee PPLNS 3 Days - Most reliable Solo with ONLY 0.5% fee   Bitcointalk thread: Forum
Discord support invite at https://kano.is/ Majority developer of the ckpool code - k for kano
The ONLY active original developer of cgminer. Original master git: https://github.com/kanoi/cgminer
mdude77
Legendary
*
Offline Offline

Activity: 1540
Merit: 1001



View Profile
June 13, 2014, 09:17:32 AM
 #15073

are we able to update the cgminer on the s1 or is it best to leave with the older build?

https://github.com/kanoi/cgminer-binaries/tree/master/AntS1

yeah thanks I know about that one. but I just wondered if the main fork that says it supports s1 could be used to keep it more up to date. (I just like to have the latest lol)
I'll not update the S1 until I've sorted out the S2 issues - since I've no idea if those issues will affect the S1 also - and the last S1 release is pretty stable.

S1 patch works great with p2pool.  So I don't think the issues affect the S1.

M

I mine at Kano's Pool because it pays the best and is completely transparent!  Come join me!
norgan
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250

Decentralize your hashing - p2pool - Norgz Pool


View Profile WWW
June 13, 2014, 09:47:31 AM
 #15074

are we able to update the cgminer on the s1 or is it best to leave with the older build?

https://github.com/kanoi/cgminer-binaries/tree/master/AntS1

yeah thanks I know about that one. but I just wondered if the main fork that says it supports s1 could be used to keep it more up to date. (I just like to have the latest lol)
I'll not update the S1 until I've sorted out the S2 issues - since I've no idea if those issues will affect the S1 also - and the last S1 release is pretty stable.

S1 patch works great with p2pool.  So I don't think the issues affect the S1.

M

yeah there's nothing wrong with the current s1 build. I am just one of those who love to know I am running the very latest code. haha

Miner, tech geek, operator of NorgzPool - Sydney Australia P2Pool Node creator of p2pool fancy front end

Tips: 1NorganBbymShTN2MMpfGzRYJF8mcPeXjv Exchange BTC locally in Australia or Donate to p2pool miners
LARTAS
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
June 13, 2014, 06:43:14 PM
 #15075

Hi
My terraminer which is good
One CTA is showing high temperatures
CTA0 Metrics             High   Low          Avg
Core Temp 1 (°C)   91.14   63.74   77.77
Core Temp 2 (°C)   64.54   56            59.57
Ambient Temp (°C)   65.5           56          59.93
Fan Speed (RPM)   4782   4248   4,542
Pump Speed (RPM)   2990   2967   2,979

Who can help me? Before it get worst
Micky25
Legendary
*
Offline Offline

Activity: 974
Merit: 1000



View Profile
June 13, 2014, 07:43:55 PM
 #15076

Hi
My terraminer which is good
One CTA is showing high temperatures
CTA0 Metrics             High   Low          Avg
Core Temp 1 (°C)   91.14   63.74   77.77
Core Temp 2 (°C)   64.54   56            59.57
Ambient Temp (°C)   65.5           56          59.93
Fan Speed (RPM)   4782   4248   4,542
Pump Speed (RPM)   2990   2967   2,979

Who can help me? Before it get worst

CoinTerra Support (CoinTerra)
May 13 15:23
The temps are operating in the expected range. It will not have an issue until 120C at which time it will shut itself off.
Regards,
Marshall

Comments: Hi, I have a very high difference on the temperatures of CTA0 and CTA1. Is there something I can do about this?
Thanks and best regards, Micky25
CTA0 Metrics High Low Avg
Core Temp 1 (°C) 108.49 76.79 87.35
Core Temp 2 (°C) 100.19 82.66 87.87
Ambient Temp (°C) 65.25 57.5 60.68
Fan Speed (RPM) 4122 3994 4,038
Pump Speed (RPM) 2991 2954 2,973
CTA1 Metrics High Low Avg
Core Temp 1 (°C) 64.23 55.89 60.13
Core Temp 2 (°C) 58.41 52.3 55.29
Ambient Temp (°C) 49.75 45.25 48.31
Fan Speed (RPM) 4225 4150 4,188
Pump Speed (RPM) 2952 2941 2,947

]
-ck (OP)
Legendary
*
Offline Offline

Activity: 4088
Merit: 1631


Ruu \o/


View Profile WWW
June 14, 2014, 11:57:21 PM
 #15077

Comments: Hi, I have a very high difference on the temperatures of CTA0 and CTA1. Is there something I can do about this?
Unfortunately not.

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
Taugeran
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


CCNA: There i fixed the internet.


View Profile
June 15, 2014, 12:08:12 AM
 #15078

im trying to get a MrTeal chili up and running on my BBB running some Onestringminer devices. alas when i plugged it in, it was recognized but once it was it started spewing "hex2bin scan failed" errors, as well as a single WARNING: firmware not recognized "mrteal fw version here" using Ver2.

0 hashrate is produced

this is cgminer 4.3.4 on a RevA6, running 5 OSM and [trying] 1 chili.


Bitfury HW & Habañero : 1.625Th/s
tips/Donations: 1NoS89H3Mr6U5CmP4VwWzU2318JEMxHL1
Come join Coinbase
detro
Newbie
*
Offline Offline

Activity: 45
Merit: 0



View Profile WWW
June 15, 2014, 02:43:08 AM
 #15079

Any idea when support for Rockminer r-box's will be available without having to hack up the code?
-ck (OP)
Legendary
*
Offline Offline

Activity: 4088
Merit: 1631


Ruu \o/


View Profile WWW
June 15, 2014, 03:59:12 PM
 #15080

Any idea when support for Rockminer r-box's will be available without having to hack up the code?
Kano and I have both received rboxes to incorporate support into cgminer for, however the current code by the manufacturer for them trashes a whole lot of other cgminer driver code making the code not portable so it will take a while longer while we rewrite the driver.

EDIT: Experimental support is now in git.

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
Pages: « 1 ... 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 [754] 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 ... 843 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!