Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining vBASIC || Community Edition 2.0
by
Stubo
on 26/10/2018, 13:15:14 UTC
Hey Devs:

I found a bug in the nvOC script. I noted that it was not reporting the max power limit for GPUs correctly so I dug in. On line 196 of the 3.0-stable release, you have this:
Code:
   POWERMAX=$(echo "$PWRLIMIT/1" | bc)
but it should be
Code:
   POWERMAX=$(echo "$POWERMAX/1" | bc)

Also, where can I find more info on this (from 1bash of 3.0-stable):
Code:
#        - Pro Settings are not for the faint-hearted. Dont use if you dont know what they are.

I scoured 1bash and 3main for this release and don't see anything else about it. Perhaps it is in a different release branch?

Thanks.