Search content
Sort by

Showing 6 of 6 results by az001
Post
Topic
Board Mining (Altcoins)
Re: [CMD] FarmWatchBot (Watchdog) for Ewbf, Claymore, Dstm, CC, B, Eth miners
by
az001
on 26/04/2018, 04:01:33 UTC
Post
Topic
Board Mining (Altcoins)
Re: [Platinum Coin] Miners Invited
by
az001
on 12/04/2018, 18:19:44 UTC
But how? which pool, which mining software?
Post
Topic
Board Mining (Altcoins)
Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows)
by
az001
on 12/03/2018, 15:47:13 UTC
Hi,

Can someone please explain how the telemetry thingy works?
Lets says I added  --telemetry=127.0.0.1:4444, how do I 'listen' from another computer (particularly over the web and not in the local network)?

Thanks Smiley

just change the 127.xxxx to the local network IP of your miner... like 192.168.x.x
better yet use 0.0.0.0 because people asking this don't know how to set static ip in dhcp server,this will use any available ip on computer

this will allow you to use it on local lan,if you want over the internet,go educate yourself for example here: https://portforward.com/ how to forward port on your external ip to internal ip:port of your miner (also check firewall,be it windows or some linux iptables)

(i also suggest to make the lease static on your router so you don't need to change it usually after power loss)

Hi, thanks but I think I wasn't clear - I know how to set IP and static IP but what do I need to do from the REMOTE computer in order to receive the data from the miner?
Post
Topic
Board Mining (Altcoins)
Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows)
by
az001
on 11/03/2018, 20:56:28 UTC
Hi,

Can someone please explain how the telemetry thingy works?
Lets says I added  --telemetry=127.0.0.1:4444, how do I 'listen' from another computer (particularly over the web and not in the local network)?

Thanks Smiley
Post
Topic
Board Mining (Altcoins)
Re: [CMD] Miner Autorun (Watchdog) for Ewbf & Claymore & Dstm & CCminer & Bminer
by
az001
on 27/02/2018, 14:36:38 UTC
Hi,

I use the PhoenixMiner.exe ver 2.6,
Link - https://bitcointalk.org/index.php?topic=2647654.0

And HSRMINER
Link - https://bitcointalk.org/index.php?topic=2565979.0


 which of the scripts versions will fit, if any? if not, I would LOVE if you'll support those in the very near future Smiley

Thanks again for the great work!
Post
Topic
Board Mining (Altcoins)
Re: [CMD] Equihash Miner Autorun (Watchdog) for Ewbf & Claymore & Dstm & CCminer
by
az001
on 03/02/2018, 08:15:16 UTC
Wonderful script, thank you very much, I love it. I recommended it to all of my mining friends!

Since you already found an efficient solution for extracting the data from the log file in real time, why not place it on a graph to make the data much more user friendly?
Such will make the overclocking process much easier.

For example by using this - http://www.gnuplot.info/
 
I would love that.
I also would have done it myself however with the learning curve will take too long Sad there are things on you script that I don't get, for example I don't get how this extract the speed and temp Sad
Code:
FOR /F "tokens=4,6 delims=AMGPUC上午下午>#| " %%a IN ('findstr.exe /R /C:".*GPU%%A .*C.*Sol/s:.*" %log%') DO (
        IF "%%a" NEQ "" IF %%a GEQ 0 IF %%a LSS 70 SET tempdata=%%a
        IF "%%a" NEQ "" IF %%a GEQ 70 SET tempdata=*%%a*
        IF "%%b" NEQ "" IF %%b GEQ 0 SET speeddata=%%b

My dream UI would be ONE graph per GPU showing a 2D plot with blue line for the current speed, black line for the average speed, green line for the efficiency (sol/w), red line for the current temp (ALL on the same graph, obviously with different scales).