Search content
Sort by

Showing 6 of 6 results by taltom
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
taltom
on 23/02/2018, 16:55:05 UTC
Been a while since I've popped my head in here...been running rather uneventfully with nvOC and my auto-switcher, watching coin pile up.

The auto-switcher writes its activity to a file, algo-log.  Yesterday, I got around to knocking together a simple tool that looks at the algo-log file and tells you what you've been mining recently:

Code:
#!/usr/bin/env python3

from datetime import datetime, timedelta
import sys
import operator

end=datetime.now().replace(microsecond=0)
try:
  start=end-timedelta(days=int(sys.argv[1]))
except:
  start=end-timedelta(days=1)

l={}

with (open("algo-log", "r")) as f:
  for i in f:
    curr=datetime.strptime(i[0:19], "%Y-%m-%d %H:%M:%S")
    curr_algo=i[28:].split(" ")[0]
    if (curr>start):
      try:
        l[curr_algo]+=curr-last
      except:
        l[curr_algo]=curr-last
    last=curr
    last_algo=curr_algo
try:
  l[last_algo]+=end-last
except:
  l[last_algo]=end-last

for i in sorted(l.items(), key=operator.itemgetter(1), reverse=True):
  print(i[0]+" {0:0.3f}".format(i[1].days*24+i[1].seconds/3600))

By default, it counts up which coins have been mined over the past day and prints a sorted list.  Here's what I've been mining:

Code:
feathercoin 6.901
monacoin 5.013
digibyte-skein 4.043
vertcoin 4.014
zencash 4.010
bitcoin-gold 1.508

Follow it with a number to get that many days' worth of analysis.  Here's my past week (./top-algos.py 7):

Code:
feathercoin 48.667
monacoin 22.975
vertcoin 17.542
zencash 16.712
digibyte-skein 16.211
groestlcoin 12.701
zclassic 8.029
bitcoin-gold 7.022
ethereum 4.514
monero 4.020
zcash 3.511
maxcoin 3.511
ethereum-classic 3.009



That looks quite handy to have.  I hate to ask, but how do I go about running that?  I'm not familiar with python at all.

Thanks,
Terry
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
taltom
on 20/02/2018, 19:59:30 UTC
Has anyone seen this when booting up?  GPU 0 is a EVGA 1080 FTW  I've changed the "target" to different numbers and they reflect in the error message.



GPU 0, Mon Feb 19 08:26:10 EST 2018 - Adjusting fan from: 35 to: 40 Temp: 61


ERROR: Error assigning value 40 to attribute 'GPUTargetFanSpeed'
       (m1-desktop:0[fan:0]) as specified in assignment
       '[fan:0]/GPUTargetFanSpeed=40' (Unknown Error).
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
taltom
on 20/02/2018, 12:46:49 UTC
Has anyone found a work around to allow running the monitor from the onboard graphics controller?  My rig will reboot if I use the internal, unless I enter control z or x or q (haven't narrowed down to which one yet) and then it will continue and boot up and run.  This works if I'm there, but of course would not work if the rig is rebooted by the system or a power hit.


Thanks much,
Terry
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
taltom
on 16/02/2018, 02:28:29 UTC

RIP Fullzero.


Can I ask what you mean by this?
Anything happened to him we don't know?

I think he is only sharing the conversation he had, don't think he actually know what happened to fullZero.

Also, that is April 2017, he was here until November after that conversation.

I truly hope and believe that he will come back one day, not to work on nvOC but to just see and say hello.


I fear the worst.
He disappeared without a word.
I have nothing but respect for him. 

Yep, we all do respect him to the heart.

So, is the OS still being maintained / upgraded or is going to stay as is?



Yes it is maintained. Version 19-2.0 Community Release has been up for a while now (check link in my signature). Work on 19-2.1 is ongoing. The project development is stronger than ever with the help of the community. In the absence of fullzero, community devs stepped up and released 19-2.0 with lots of bug fixes, improvements and new features.

Excellent! Now if only I can figure out how to install drivers for my USB wifi adapter. 

Many thanks to the community!
Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
taltom
on 16/02/2018, 02:03:11 UTC

RIP Fullzero.


Can I ask what you mean by this?
Anything happened to him we don't know?

I think he is only sharing the conversation he had, don't think he actually know what happened to fullZero.

Also, that is April 2017, he was here until November after that conversation.

I truly hope and believe that he will come back one day, not to work on nvOC but to just see and say hello.


I fear the worst.
He disappeared without a word.
I have nothing but respect for him. 

Yep, we all do respect him to the heart.

So, is the OS still being maintained / upgraded or is going to stay as is?

Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
taltom
on 13/02/2018, 02:36:11 UTC
Giving nvOC a try, but need to use USB wireless adapter.  Does anyone know how I install drivers from a CD for nvOC?

Thanks much!