Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining
by
weareken
on 19/06/2017, 23:25:37 UTC
First, thank you so much fullzero  Grin for this.  I've rolled my own in the past, so this was a nice find and saved me a lot of trouble to do my own.

Have a couple of questions
1) I'm using 4 x PNY GTX 1060 3GB cards on a Gigabyte Z97 SOC Force motherboard.  Under Win10 with power 70, cclock 150, and mclock 850 I consistently get ~23 Mh/s.  With nvOC with the same settings I get 21.4 Mh/s.  Increasing the mclock doesn't seem to increase the hashrate.  cclock at 100 doesn't seem to make a difference either.

My oneBash looks like this:
Code:
COIN="ETH"

POWERLIMIT="70"                 # YES NO

INDIVIDUAL_POWERLIMIT="NO"      # YES NO

__CORE_OVERCLOCK=150
MEMORY_OVERCLOCK=850

INDIVIDUAL_CLOCKS="NO"          # YES NO

When the bash file starts it shows that the attributes are set, but it appears that the clock settings aren't taking effect. I don't see any errors thrown when Claymore starts up except that the cuda library doesn't have a version number.

2) I added a couple of parameters to the Eth command line, but it doesn't seem to pick them up.  For instance, when try to interactively change the dcri it tells me that i need to set -asm 1, but that is already set in the bash file.
Code:
if [ $COIN == "ETH" ]
then
HCD='/home/m1/9.0/ethdcrminer64'
ETHADDR="$ETH_ADDRESS/$ETH_WORKER"

if [ $ETHERMINEdotORG == "YES" ]
then
ETHADDR="$ETH_ADDRESS.$ETH_WORKER"
fi

until $HCD -epool $ETH_POOL -ewal $ETHADDR -epsw x -mode 1 -esm 0 -estale 0 -asm 1 -dcri 12
   do
   echo "FAILURE; reinit in 5" >&2
   sleep 5
done
fi

Any recommendations would be much appreciated.  Windows 10 sucks for mining - so much babysitting, so hoping to get this tweaked and running well.