Hi guys,
as a newbie to linux i have to thank all developers for their work. Thank you guys and please don´t stop, if you did, you would leave people like me hanging in the cold.
A problem i encountered with the new community release version 2.0 is the following.
If i try to connect any of my rigs (doesn´t matter whether nvidia or amd cards) to any etn pool (doesn´t matter as well which pool it is) nvOC uses KTccminer as the miner but once i connect the pool always sets the difficulty at 19, exactly at 19 and this repeats no matter what rig i connect to what etn pool. I had all rigs running under 19. 1.4 and everything was good, now i can´t connect to any of the etn pools.
Any suggestions?
It uses 'KTccminer-cryptonight'
Can you paste result of this command (type in guake)
ps aux | grep miner
Paste the result over here.
Can you also paste the ETN coin details you have in 1bash?
Thanks for trying to help this is the result of your command
m1@m1-desktop:~$ ps aux | grep miner
m1 10259 288 0.6 564212 49368 pts/17 Sl+ 22:37 2:15 /home/m1/cpuOPT/cpuminer -a cryptonight -o stratum+tcp://pool.etnminers.com:3333 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac
isz4bmS6E8HRgEA2cJZ.1600.19_2_ASGT405XE3 -p x -t 3
m1 10553 0.0 0.0 27188 2896 ? Ss 22:37 0:00 SCREEN -dmSL miner /home/m1/KTccminer-cryptonight/ccminer -o stratum+tcp://pool.etnminers.com:7777 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac
isz4bmS6E8HRgEA2cJZ.19_2_ASGT405XE3 -p x
m1 10554 12.5 5.1 64984620 414744 pts/24 Ssl+ 22:37 0:04 /home/m1/KTccminer-cryptonight/ccminer -o stratum+tcp://pool.etnminers.com:7777 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac
isz4bmS6E8HRgEA2cJZ.19_2_ASGT405XE3 -p x
m1 10702 0.0 0.0 14224 944 pts/16 R+ 22:38 0:00 grep --color=auto miner
I also tried to connect to etn.easyhash.io:3631 with the same result, diff gets set at exactly 19 and stays there. I can however set the diff manually by adding it to my etn address as "...address.20000" This works but then the diff stays at that at all times. Once again everything worked fine in 19_1.4
As for the details of my 1bash settings for the etn coin. I have my etn address in there as shown above as well as the port. I use port 3333 for the cpu threads and 7777 for the gpu´s in the rig i am using right now to get back online. There are 4 1050 ti`s in there.
When i look at at the outcome above it adds the diff 1600 for the cpu thread (which i set manually by adding it to 1bash) and it puts my custom worker name right behind the etn address. Seeing this now i just converted back to HOST instead of CUSTOM worker name but that doesn´t help a lot. In that case the diff gets set to 100, stays there and the miner never starts mining. The cpu works but only because i set it manually to a 1600 diff. KTccminer-cryptonight never starts mining even though it shows accepted shares.
Unfortunately i don´t know enough about Linux to get anywhere close to resolving this.
Sorry, it took a while to respond.
Ok, i think i've found the issue.
a) Your cpu miner command :/home/m1/cpuOPT/cpuminer -a cryptonight -o stratum+tcp://pool.etnminers.com:3333 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac isz4bmS6E8HRgEA2cJZ.1600.19_2_ASGT405XE3 -p x -t 3
What pool expecting to see is : It's not expecting to see worker name attached to ADDY.
/home/m1/cpuOPT/cpuminer -a cryptonight -o stratum+tcp://pool.etnminers.com:3333 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac isz4bmS6E8HRgEA2cJZ -p x -t 3
Search for this code in 3main;
if [ $plusCPU == "YES" ] && [ $AUTO_START_MINER == "YES" ]
then
HCD='/home/m1/cpuOPT/cpuminer'
XMRADDR="$XMR_ADDRESS.$XMR_WORKER"
Change
XMRADDR="$XMR_ADDRESS.$XMR_WORKER"
to this
XMRADDR="$XMR_ADDRESS
b) Your ccminer command
/home/m1/KTccminer-cryptonight/ccminer -o stratum+tcp://pool.etnminers.com:7777 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac isz4bmS6E8HRgEA2cJZ.19_2_ASGT405XE3 -p x
What pool is expecting to see is : It's not expecting to see worker name attached to ADDY.
/home/m1/KTccminer-cryptonight/ -o stratum+tcp://pool.etnminers.com:7777 -u etnkEv3h8DxMLSWMBYTmMLfKNgnaQf6k7hGbkEbK6hbeGku69dh8Lm7iihpV4dg3BRXcJFAKfGUaNac isz4bmS6E8HRgEA2cJZ -p x
Go to 0miner, search for these lines
if [ $COIN == "ETN" ]
then
HCD='/home/m1/KTccminer-cryptonight/ccminer'
ADDR="$ETN_ADDRESS.$ETN_WORKER"
Change this
ADDR="$ETN_ADDRESS.$ETN_WORKER"
to this
ADDR="$ETN_ADDRESS"
This should work.
Difficulty will vary based on the port you select (most of the stratum pools automatically adjust the difficulty - my suggestion, leave your current port as is), please check the below link for more information :
https://etnminers.com/#getting_startedIt is that simple that i feel kind of embarassed. Should have found it myself. But i do have a question following this.
All my rigs are running again with var diff (cpu and gpu´s) under nvOC 2.0 after eliminating the worker address from 0main and 3main but these rigs did work under nvOC 19 1.4 so you guys put that code into the two files for the community release. But right after updating from 1.4 to 2.0 i tried several etn mining pools and got the same result everytime. So for mining etn should the worker address stay in 0main and 3main?
In other words am i the only one experiencing this mistake while mining etn or is it a mistake that the worker address is added in 0main and 3main for etn mining?