Bitcoin Forum
April 27, 2024, 02:26:04 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 [457] 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 ... 843 »
  Print  
Author Topic: OFFICIAL CGMINER mining software thread for linux/win/osx/mips/arm/r-pi 4.11.1  (Read 5805212 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.)
jborkl
Sr. Member
****
Offline Offline

Activity: 246
Merit: 250


Team Heritage Motorsports


View Profile WWW
March 27, 2013, 05:37:52 PM
 #9121

If your best share was above the listed diff of 5.13m, then you found a block. Otherwise it does not matter

I HATE TABLES I HATE TABLES I HA(╯°□°)╯︵ ┻━┻ TABLES I HATE TABLES I HATE TABLES
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714227964
Hero Member
*
Offline Offline

Posts: 1714227964

View Profile Personal Message (Offline)

Ignore
1714227964
Reply with quote  #2

1714227964
Report to moderator
1714227964
Hero Member
*
Offline Offline

Posts: 1714227964

View Profile Personal Message (Offline)

Ignore
1714227964
Reply with quote  #2

1714227964
Report to moderator
pekv2
Hero Member
*****
Offline Offline

Activity: 770
Merit: 502



View Profile
March 27, 2013, 06:01:50 PM
 #9122

If your best share was above the listed diff of 5.13m, then you found a block. Otherwise it does not matter

Oh, ok. I was under the impression there was an actual summary that is suppose to show e.g. B 1 or B 2 so on so forth.
K1773R
Legendary
*
Offline Offline

Activity: 1792
Merit: 1008


/dev/null


View Profile
March 27, 2013, 08:38:17 PM
 #9123

If your best share was above the listed diff of 5.13m, then you found a block. Otherwise it does not matter
its scrypt, not sha256d

[GPG Public Key]
BTC/DVC/TRC/FRC: 1K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM AK1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: NK1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: LKi773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: EK1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: bK1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
pekv2
Hero Member
*****
Offline Offline

Activity: 770
Merit: 502



View Profile
March 27, 2013, 08:47:20 PM
 #9124

If your best share was above the listed diff of 5.13m, then you found a block. Otherwise it does not matter
its scrypt, not sha256d

So atm, I am mining with sha256d? and not scrypt?
Marrs
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
March 27, 2013, 08:56:33 PM
 #9125

If your best share was above the listed diff of 5.13m, then you found a block. Otherwise it does not matter

Oh, ok. I was under the impression there was an actual summary that is suppose to show e.g. B 1 or B 2 so on so forth.

There IS a summary. You can query it through the API.

First, you need to enable the API by including these lines in your config file:
Code:
"api-listen" : true,
"api-network" : true,
"api-port" : "4028",

Then, if you have java installed on your system, cd into the cgminer directory, then run the following:
Code:
java API summary

That will output something like this:
Code:
Attempting to send 'summary' to 127.0.0.1:4028
Answer='STATUS=S,When=1364416953,Code=11,Msg=Summary,Description=cgminer 2.11.3|SUMMARY,Elapsed=937,MHS av=27.94,Found Blocks=0,Getworks=67,Accepted=6,Rejected=0,Hardware Errors=0,Utility=0.38,Discarded=124,Stale=0,Get Failures=0,Local Work=318,Remote Failures=0,Network Blocks=3,Total MH=26176.6840,Work Utility=0.38,Difficulty Accepted=6.00000000,Difficulty
Rejected=0.00000000,Difficulty Stale=0.00000000,Best Share=7| '[STATUS] =>
(
   [STATUS] => S
   [When] => 1364416953
   [Code] => 11
   [Msg] => Summary
   [Description] => cgminer 2.11.3
)
[SUMMARY] =>
(
   [0] => SUMMARY
   [Elapsed] => 937
   [MHS av] => 27.94
   [Found Blocks] => 0
   [Getworks] => 67
   [Accepted] => 6
   [Rejected] => 0
   [Hardware Errors] => 0
   [Utility] => 0.38
   [Discarded] => 124
   [Stale] => 0
   [Get Failures] => 0
   [Local Work] => 318
   [Remote Failures] => 0
   [Network Blocks] => 3
   [Total MH] => 26176.6840
   [Work Utility] => 0.38
   [Difficulty Accepted] => 6.00000000
   [Difficulty Rejected] => 0.00000000
   [Difficulty Stale] => 0.00000000
   [Best Share] => 7
)

As you can see, this includes the Found Blocks.

summary is actually the default command for the java API example class, so you could leave out the summary argument if that was all you wanted to do. For more information about using the API, read the API-README.txt file in cgminer directory or github.
[/code]
pekv2
Hero Member
*****
Offline Offline

Activity: 770
Merit: 502



View Profile
March 27, 2013, 09:01:11 PM
Last edit: March 27, 2013, 09:30:56 PM by pekv2
 #9126

If your best share was above the listed diff of 5.13m, then you found a block. Otherwise it does not matter

Oh, ok. I was under the impression there was an actual summary that is suppose to show e.g. B 1 or B 2 so on so forth.

There IS a summary. You can query it through the API.

First, you need to enable the API by including these lines in your config file:
Code:
"api-listen" : true,
"api-network" : true,
"api-port" : "4028",

Then, if you have java installed on your system, cd into the cgminer directory, then run the following:
Code:
java API summary

That will output something like this:
Code:
Attempting to send 'summary' to 127.0.0.1:4028
Answer='STATUS=S,When=1364416953,Code=11,Msg=Summary,Description=cgminer 2.11.3|SUMMARY,Elapsed=937,MHS av=27.94,Found Blocks=0,Getworks=67,Accepted=6,Rejected=0,Hardware Errors=0,Utility=0.38,Discarded=124,Stale=0,Get Failures=0,Local Work=318,Remote Failures=0,Network Blocks=3,Total MH=26176.6840,Work Utility=0.38,Difficulty Accepted=6.00000000,Difficulty
Rejected=0.00000000,Difficulty Stale=0.00000000,Best Share=7| '[STATUS] =>
(
   [STATUS] => S
   [When] => 1364416953
   [Code] => 11
   [Msg] => Summary
   [Description] => cgminer 2.11.3
)
[SUMMARY] =>
(
   [0] => SUMMARY
   [Elapsed] => 937
   [MHS av] => 27.94
   [Found Blocks] => 0
   [Getworks] => 67
   [Accepted] => 6
   [Rejected] => 0
   [Hardware Errors] => 0
   [Utility] => 0.38
   [Discarded] => 124
   [Stale] => 0
   [Get Failures] => 0
   [Local Work] => 318
   [Remote Failures] => 0
   [Network Blocks] => 3
   [Total MH] => 26176.6840
   [Work Utility] => 0.38
   [Difficulty Accepted] => 6.00000000
   [Difficulty Rejected] => 0.00000000
   [Difficulty Stale] => 0.00000000
   [Best Share] => 7
)

As you can see, this includes the Found Blocks.

summary is actually the default command for the java API example class, so you could leave out the summary argument if that was all you wanted to do. For more information about using the API, read the API-README.txt file in cgminer directory or github.
[/code]

Oh, Marrs, thank you, I would have never found this out on my own, I was getting so confused, well done. I will now have java installed just for this summary, thanks.

Here is a tip for you and who ever else that I picked up along the way of PCing. Hit shift then right click in the directory, run cmd here, it will open a cmd window cd'd already to that directory.
Fiyasko
Legendary
*
Offline Offline

Activity: 1428
Merit: 1001


Okey Dokey Lokey


View Profile
March 27, 2013, 09:01:39 PM
 #9127

*headache* So is all this new stuff just for 7970's? Or would a 7950 suffice...
Im running 2.10.4 right now and im wondering if i'll notice any benefit to upgrading all my miners (some use 5xxx 6xxx) or if just my 7950 will benefit.
Would a 7950 show a hashrate increase if i was to update to 2.11.3?
Just make another directory, put new mniner into it, copy config files, run and see...
AWEUHG c'mon I really dont want install the newer cgminer on all my machines just as a test *headdesk* Thats why i asked if i should expect any kind of boost of any kind

http://bitcoin-otc.com/viewratingdetail.php?nick=DingoRabiit&sign=ANY&type=RECV <-My Ratings
https://bitcointalk.org/index.php?topic=857670.0 GAWminers and associated things are not to be trusted, Especially the "mineral" exchange
Marrs
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
March 27, 2013, 09:21:05 PM
 #9128

I will now have java installed just for this summary, thanks.

You don't need Java. That was just an example using the Java API sample that ships with cgminer.

All you need is to be able to send data to the network port that you enabled the API listener on.

If you have a Linux box handy, you could do this instead:

Code:
echo -n "summary" | nc ip.address.of.cgminer 4028
pekv2
Hero Member
*****
Offline Offline

Activity: 770
Merit: 502



View Profile
March 27, 2013, 09:34:24 PM
 #9129

I will now have java installed just for this summary, thanks.

You don't need Java. That was just an example using the Java API sample that ships with cgminer.

All you need is to be able to send data to the network port that you enabled the API listener on.

If you have a Linux box handy, you could do this instead:

Code:
echo -n "summary" | nc ip.address.of.cgminer 4028

oh. Thank you Marrs. Without you guys, im a rock.

I'm good to go.

Code:
[0] => SUMMARY
[Elapsed] => 1970
[MHS av] => 0.77
[Found Blocks] => 0
[Getworks] => 51
[Accepted] => 312
[Rejected] => 5
[Hardware Errors] => 0
[Utility] => 9.50
[Discarded] => 98
[Stale] => 0
[Get Failures] => 0
[Local Work] => 220
[Remote Failures] => 0
[Network Blocks] => 22
[Total MH] => 1517.2895
[Work Utility] => 762.77
[Difficulty Accepted] => 24656.00000000
[Difficulty Rejected] => 384.00000000
[Difficulty Stale] => 0.00000000
[Best Share] => 37735
Scratch
Member
**
Offline Offline

Activity: 84
Merit: 10



View Profile
March 28, 2013, 12:42:10 AM
 #9130

Hey all,

LTC head normally, trying out a little bit of BTC just for kicks and because its applies to PPC too.

Setup:
Q6600 @3.5Ghz
8GB DDR3
7870 Joker
5770 PMD1G

Win764
CGminer 2.11.3
Cat 13.2

Trying to mine but 5770 is just throwing hardware errors "GPU1: invalid nonce - HW error". Temps are fine. Tried adjusted clocks, nada. Works fine on LTC, 200kH.

Can anyone suggest a solution and optimal clock settings to start with?

Litecoin is the way forward. Dont go near it yet though, i want it all for me Wink
os2sam
Legendary
*
Offline Offline

Activity: 3578
Merit: 1090


Think for yourself


View Profile
March 28, 2013, 01:36:40 AM
 #9131

Trying to mine but 5770 is just throwing hardware errors "GPU1: invalid nonce - HW error". Temps are fine. Tried adjusted clocks, nada. Works fine on LTC, 200kH.

Can anyone suggest a solution and optimal clock settings to start with?

My 5770 is set to Engine 920 and Mem 250.  I used to run it at 935 to 940 but with stratum and later versions of CG Miner I had to lower it to 920.  I'm also on catalyst 12.1.

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
xorxor
Sr. Member
****
Offline Offline

Activity: 476
Merit: 253



View Profile
March 28, 2013, 07:01:37 AM
Last edit: March 28, 2013, 07:26:28 AM by xorxor
 #9132

when mining on 4 gpu rig, on difficulty 1 , im geting such crash on internet reconnect :


   APPCRASH
   cgminer.exe
ver   0.0.0.0
time   514557a8
module   libusb-1.0.dll
ver   1.0.9.0
time   51132051
code   c0000005
exept.   00001e07
os   6.1.7600.2.0.0.256.1

 1:   0a9e
 2:   0a9e372d3b4ad19135b953a78882e789
 3:   0a9e
 4:   0a9e372d3b4ad19135b953a78882e789


windows 7 64; drv 13.1; sdk 2.7; cgminer 2.11.3; --scrypt, 2x 5970, getwork + LP, with failover set on stratum

 when on other pools, that have higher diff, rig is stable.



fuck deeponion, fuck bitcoincash, all glory to one BITCOIN
-ck (OP)
Legendary
*
Offline Offline

Activity: 4088
Merit: 1631


Ruu \o/


View Profile WWW
March 28, 2013, 07:28:45 AM
 #9133

when mining on 4 gpu rig, on difficulty 1 , im geting such crash on internet reconnect :


   APPCRASH
   cgminer.exe
ver   0.0.0.0
time   514557a8
module   libusb-1.0.dll
ver   1.0.9.0
time   51132051
code   c0000005
exept.   00001e07
os   6.1.7600.2.0.0.256.1

 1:   0a9e
 2:   0a9e372d3b4ad19135b953a78882e789
 3:   0a9e
 4:   0a9e372d3b4ad19135b953a78882e789


windows 7 64; drv 13.1; sdk 2.7; cgminer 2.11.3; --scrypt, 2x 5970, getwork + LP, with failover set on stratum

 when on other pools, that have higher diff, rig is stable.



It looks like you are submitting lots of shares, your miner has disconnected 47 times due to an unstable pool/connection, cgminer has cached shares in the hope of resubmitting them when it reconnects with stratum, and then crashed due to running out of resources to spawn another thread trying to submit more shares. The amount of shares at diff1 on scrypt is obscene, choose a sensible pool.

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

Activity: 476
Merit: 253



View Profile
March 28, 2013, 11:51:36 AM
 #9134

when mining on 4 gpu rig, on difficulty 1 , im geting such crash on internet reconnect :
   APPCRASH
(.................)
It looks like you are submitting lots of shares, your miner has disconnected 47 times due to an unstable pool/connection, cgminer has cached shares in the hope of resubmitting them when it reconnects with stratum, and then crashed due to running out of resources to spawn another thread trying to submit more shares. The amount of shares at diff1 on scrypt is obscene, choose a sensible pool.


im kinda geting paid to test this new pool, but first thing I said on the spot 5 second  from start :  "diff 16 man!"


fuck deeponion, fuck bitcoincash, all glory to one BITCOIN
kano
Legendary
*
Offline Offline

Activity: 4466
Merit: 1800


Linux since 1997 RedHat 4


View Profile
March 28, 2013, 10:53:14 PM
 #9135

Hi Kano,

I was trying to upgrade from 2.7.6 to 2.11.3

I followed your procedure to update BFL device driver to WinUSB.  Downloaded zadig (for Windows 7), run it as administrator.
I got an error installing WinUSB driver.  Here is the Zadig debug log:

http://www.petermoss.com/akbash/zadig_install_log

Can you add FTDI driver support as an option?  As it is now, I can only use 2.10.5 version.

You'll have to ask the zadig devs.

The FTDI driver blocks direct USB access with libusb, that is why WinUSB is required.

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
Luke-Jr
Legendary
*
Offline Offline

Activity: 2576
Merit: 1186



View Profile
March 28, 2013, 11:42:13 PM
 #9136

Hi Kano,

I was trying to upgrade from 2.7.6 to 2.11.3

I followed your procedure to update BFL device driver to WinUSB.  Downloaded zadig (for Windows 7), run it as administrator.
I got an error installing WinUSB driver.  Here is the Zadig debug log:

http://www.petermoss.com/akbash/zadig_install_log

Can you add FTDI driver support as an option?  As it is now, I can only use 2.10.5 version.

You'll have to ask the zadig devs.

The FTDI driver blocks direct USB access with libusb, that is why WinUSB is required.
You mean libusb just requires a non-standard driver on Windows.
It does on Linux, too, but libusb has a feature to request the standard driver shutdown (which you're using).

Thankfully, people who want sane FPGA/ASIC support can continue to use BFGMiner, the original FPGA/ASIC miner.
Who knows why anyone still uses your troll fork.

-ck (OP)
Legendary
*
Offline Offline

Activity: 4088
Merit: 1631


Ruu \o/


View Profile WWW
March 29, 2013, 12:28:00 AM
Last edit: March 29, 2013, 01:04:47 AM by ckolivas
 #9137

CGMiner has nanosleep and sleep declared, which fucks the build for x86_64-w64-mingw32. Also, pthreads are not listed in the dependencies, and there is no option in configure to specify the prefix for pthreads.
We don't support building for w64 since it serves no useful advantage over 32 bit windows builds.

Iin fact ming w64 is an unstable development branch and 64 bit builds use more ram and are less reliable.

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

Activity: 2576
Merit: 1186



View Profile
March 29, 2013, 12:30:39 AM
 #9138

CGMiner has nanosleep and sleep declared, which fucks the build for x86_64-w64-mingw32. Also, pthreads are not listed in the dependencies, and there is no option in configure to specify the prefix for pthreads.
We don't support building for w64 since it serves no useful advantage over 32 bit builds.
BFGMiner has w64-related bugs fixed and officially supported.

kano
Legendary
*
Offline Offline

Activity: 4466
Merit: 1800


Linux since 1997 RedHat 4


View Profile
March 29, 2013, 01:19:35 AM
 #9139

CGMiner has nanosleep and sleep declared, which fucks the build for x86_64-w64-mingw32. Also, pthreads are not listed in the dependencies, and there is no option in configure to specify the prefix for pthreads.
We don't support building for w64 since it serves no useful advantage over 32 bit builds.
BFGMiner has w64-related bugs fixed and officially supported.
However, please note that BFGMiner is well known to brick mining hardware. Avoid it.
Stay with cgminer, it works on that hardware that the crappy BFGMiner clone bricks.

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
Luke-Jr
Legendary
*
Offline Offline

Activity: 2576
Merit: 1186



View Profile
March 29, 2013, 01:24:01 AM
 #9140

CGMiner has nanosleep and sleep declared, which fucks the build for x86_64-w64-mingw32. Also, pthreads are not listed in the dependencies, and there is no option in configure to specify the prefix for pthreads.
We don't support building for w64 since it serves no useful advantage over 32 bit builds.
BFGMiner has w64-related bugs fixed and officially supported.
However, please note that BFGMiner is well known to brick mining hardware. Avoid it.
As usual, this is a lie.

Pages: « 1 ... 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 [457] 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 ... 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!