Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining
by
fullzero
on 15/06/2017, 17:36:23 UTC
I got this to work but I am mining for op with the stick

fine with sending some hash to him.

I need help to set my settings in.

I use ewbf_ 3.4b to mine at nice hash

Whatcha need help with Phil?

okay I figured out settings and I am at nicehash.

https://www.nicehash.com/index.jsp?p=miners&addr=1JdC6Xg3ajT3rge3FgPNSYYFpmf53Vbtje

noVCphiltest1

have 2 questions now

 1 ) how to I upgrade to ewbf_ 3.4b

 2) looking to set  power lower  I have -pl at 100  so -pl 90 should drop power?


All you have to do is install ewbf to the same location as the one he has now and it'll pick it up and run it
Yes it will drop the power of all cards if you set it for all
What I would do is download it. Extract it to the desktop then copy and paste it into the same folder and name it the same then onebash will run it all the same also make a copy of the original file to be safe

I found the zec folder so I think  I can upgrade from 3.3 to 3.4

 I do not seem to be setting the power limits correctly -pl  100 ,90, 80, 70, 65  and I pull 150 watts per card

Are you going close to the bottom of the bash file to set the power limit?
You don't have to do it in the command line for the zec miner it'll be its own section for power limit settings

Phil,

if you haven't updated EWBF yet see:  https://bitcointalk.org/index.php?topic=1854250.msg19579963#msg19579963

with powerlimits:

if using the same powerlimit for each card set:

Code:
POWERLIMIT="YES"
         

and in this block of code:

Code:
if [ $POWERLIMIT == "YES" ]
then
sleep 6
#change powerlimit by changing the number after -pl to the desired wattage
expect -c 'spawn sudo nvidia-smi -pl 125
expect "*password*:"
send "miner1\r" '
sleep 6
fi

find the line:
Code:
expect -c 'spawn sudo nvidia-smi -pl 125

and replace 125 with the desired powerlimit in watts


if using the individual powerlimits for each card set:

Code:
INDIVIDUAL_POWERLIMIT="YES"
      

and in this block of code:

Code:
if [ $INDIVIDUAL_POWERLIMIT == "YES" ]
then
sleep 6
#change GPU 0 powerlimit by changing the number after -pl to the desired wattage
expect -c 'spawn sudo nvidia-smi -i 0 -pl 125
expect "*password*:"
send "miner1\r" '
sleep 6

#change GPU 1 powerlimit by changing the number after -pl to the desired wattage
expect -c 'spawn sudo nvidia-smi -i 1 -pl 125
expect "*password*:"
send "miner1\r" '
sleep 6

#change GPU 2 powerlimit by changing the number after -pl to the desired wattage
expect -c 'spawn sudo nvidia-smi -i 2 -pl 125
expect "*password*:"
send "miner1\r" '
sleep 6

#change GPU 3 powerlimit by changing the number after -pl to the desired wattage
expect -c 'spawn sudo nvidia-smi -i 3 -pl 125
expect "*password*:"
send "miner1\r" '
sleep 6

#change GPU 4 powerlimit by changing the number after -pl to the desired wattage
expect -c 'spawn sudo nvidia-smi -i 4 -pl 125
expect "*password*:"
send "miner1\r" '
sleep 6

#change GPU 5 powerlimit by changing the number after -pl to the desired wattage
expect -c 'spawn sudo nvidia-smi -i 5 -pl 125
expect "*password*:"
send "miner1\r" '
sleep 6

#change GPU 6 powerlimit by changing the number after -pl to the desired wattage
expect -c 'spawn sudo nvidia-smi -i 6 -pl 125
expect "*password*:"
send "miner1\r" '
sleep 6

........

change each line:

expect -c 'spawn sudo nvidia-smi -i 0 -pl 125  ( this is for GPU 0 )

expect -c 'spawn sudo nvidia-smi -i 1 -pl 125  ( this is for GPU 1 )

expect -c 'spawn sudo nvidia-smi -i 2 -pl 125

expect -c 'spawn sudo nvidia-smi -i 3 -pl 125

expect -c 'spawn sudo nvidia-smi -i 4 -pl 125

expect -c 'spawn sudo nvidia-smi -i 5 -pl 125  ( this is for GPU 5 )

to the desired powerlimit.

Note: the indexing of the GPUs might be different than you expect.

If you open the guake terminal; press f12

and enter:
Code:
nvidia-smi

It should list your cards in the correct order.