Author

Topic: [NemosMiner] multi algo profit switching NVIDIA/CPU miner - page 113. (Read 289447 times)

sr. member
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3
Hi Nemo, isn’t there a possibility / plan to have a backup or failover pool if main pool is down? This would be great

yes i will be adding a new start.bat to 2.3.1 which will mine on all pools at once so if one goes down it will just skip to next profitable pool

if you would like to try it edit the start.bat find -poolname zpool change it to -poolname zpool,ahashpool

Regards
Nemo
member
Activity: 112
Merit: 10
Hi,
complete beginner here. Could anyone direct me to a tutorial how to use this miner? I edited the .bat file accordingly, ran the benchmark without errors...it was still running after like 2-3 hours (atm using 4*1070 ti), is this normal? Does the benchmark run indefinitely or? Also how do I actually start mining? In the bin folder there are 6 different miners (Alexis 78, Alexis 78 cuda 9, CCminer Klaust, DTSM, Tpruvodcuda9 and Tpruvodx64), which one should I start if I want to mine in MPH with multi algo profit switching?

Sorry for noob questions, I am a bit overwhelmed by this...I found only 1 tutorial on youtube but it hasnt been much of a help (the guy doesnt show how to actually mine).

Thanks in advance

Its mining during benchmark, just switching every 120 seconds
1) Make sure video cards are set in batch, so if you have 6 nvidia cards you need the GPU values to have 0 1 2 3 4 5 and 0,1,2,3,4,5
2) AHashPool will give you more profit than Zpool and other pools (lower fees, higher results)
3) Make sure wallet set in batch file, then go to ahashpool and click wallet and enter to see miner is working (can be 15-60min delay for updates, this isn't realtime)
4) Change interval to 900 after benchmarks are complete (kill process, edit batch, run again)

You are now 'mining' as you watch the main screen and the 'miner' screen popup.  Look at Miner screen to see if its hashing.  Search wallet at pool to see if it shows your miner.

Thanks for the answer, So you start the actual mining with the startminingpoolhub.bat or do you need to start the particular miners in the bin (the 6 different ones)?
Also the AHashoPool pays only in Bitcoin, can you mine to Coinbase wallet directly from there or is it better to set something like Mist wallet?

thanks in advance

Forget miningpoolhub, just use startahashpool24hr.bat, yes program with coinbase bitcoin deposit wallet address works great.
hero member
Activity: 1218
Merit: 534
from 2.2 to 2.3c...so I was thinking about going back, but you seem to be doing well...in the words of Borat;  "Very nice!"

Jak se máš? Cheesy

My earnings were down too the last weeks.. Now they are OK I guess. Smiley
jr. member
Activity: 161
Merit: 1
Very interesting...I've read mix reviews about the 24hr setup but have yet to try it.  I'll give it a go.    I'm assuming it would switch much less because there's much less variation over 24hrs vs current...

I had a feeling there was something a little off the other day and then I read of someone saying they thought there was a profit fall off going from 2.2 to 2.3c...so I was thinking about going back, but you seem to be doing well...in the words of Borat;  "Very nice!"

hero member
Activity: 1218
Merit: 534
Which version are you running BitBustah?  And which algos are you running at ahash?  I Was getting a ton of errors with nist5 over there last night so i tried skein on hashrefinery and only saw about $8 per 1080ti.  Back on ahash x17, skein, and tribus.  I like tribus because its streaky and gets up to full hash very fast.  Running a 600 interval.


NemosMiner-v2.3c-beta, autoswitching on 1800 interval, doing Ahash24hr pool:
phi,lbry,skein,x17,bitcore,Nist5,Lyra2RE2,neoscrypt,blake2s,skunk,groestl


Check out the stats 16:00 -16:00
http://tools.you-stupid-woman.com/hourly_earnings/

Rounded down I would say my Ti is doing 40% of that near 21 euro, my 2 regular 1080s are doing both 30%.
jr. member
Activity: 161
Merit: 1
Which version are you running BitBustah?  And which algos are you running at ahash?  I Was getting a ton of errors with nist5 over there last night so i tried skein on hashrefinery and only saw about $8 per 1080ti.  Back on ahash x17, skein, and tribus.  I like tribus because its streaky and gets up to full hash very fast.  Running a 600 interval.
hero member
Activity: 1218
Merit: 534
+- 21 euro last 24 hours at Ahash with my 1x 1080 Ti and 2 x 1080   Cheesy
newbie
Activity: 7
Merit: 0
How much can 1070 can earn for a day in the past few days?

My friend has a single 1070 on ahashpool, I just looked at his chart and in the last 24 hours he made .0003 BTC or $4.95 at the current value.
newbie
Activity: 29
Merit: 0
Hi Nemo it seems to me that time of ran miners wrong?
and hsr palgin miner returns wrong result for neoscrypt  writes 909,72 MH/s real  9.09 MH/s
newbie
Activity: 126
Merit: 0
How much can 1070 can earn for a day in the past few days?
hero member
Activity: 714
Merit: 512
testing Palgins new HSR miner for neoscrypt i have it downloading and Benchmarking but running into a issue with it not closing after completing benchmarks  

you can test for yourself here: https://github.com/nemosminer/NemosMiner-v2.3/issues/130

Best Regards
Nemo

Awesome.  Grin

I am testing now on my home office PC... just got back in from Mexico =)

KlaustT 8.18 --> 1.43 MH/S
Palgin 1.0.1 --> 1.75 MH/S

GTX 1080Ti with very mild OC -- (+100 core / +200 mem) in my home office PC.

Very nice!

But yes... it seems to keep on running. So far it has failed to close after several cycles.



I am not a Powershell coder... but it seems to be calling for a .txt file that doesn't exist ?
I've never coded powershell, after some researchs I found a fix, looks ugly but works, replace the codes in Wrapper.ps1:
Code:
   $PowerShell.Streams.Verbose.ReadAll() | ForEach-Object {
        $Line = $_

        if ($Line -like "*total speed:*" -or $Line -like "*accepted:*") {
            $Words = $Line -split " "
            $HashRate = [Decimal]$Words[$Words.IndexOf(($Words -like "*/s" | Select-Object -Last 1)) - 1]

            switch ($Words[$Words.IndexOf(($Words -like "*/s" | Select-Object -Last 1))]) {
                "kh/s" {$HashRate *= [Math]::Pow(1000, 1)}
                "mh/s" {$HashRate *= [Math]::Pow(1000, 2)}
                "gh/s" {$HashRate *= [Math]::Pow(1000, 3)}
                "th/s" {$HashRate *= [Math]::Pow(1000, 4)}
                "ph/s" {$HashRate *= [Math]::Pow(1000, 5)}
            }

            $HashRate | Set-Content ".\Wrapper_$Id.txt"
        } elseif ($Line -like "*overall speed is*") {
            $Words = $Line -split " "
            $HashRate = [Decimal]($Words -like "*H/s*" -replace ',', '' -replace "[^0-9.]",'' | Select-Object -Last 1)

            switch ($Words -like "*H/s*" -replace "[0-9.,]",'' | Select-Object -Last 1) {
                "KH/s" {$HashRate *= [Math]::Pow(1000, 1)}
                "mH/s" {$HashRate *= [Math]::Pow(1000, 2)}
                "MH/s" {$HashRate *= [Math]::Pow(1000, 2)}
            }

            $HashRate | Set-Content ".\Wrapper_$Id.txt"
        }

        $Line
    }
@minerx117 would have a elegant solution.
Happy mining!

That DID work. I tried it on mine =)
newbie
Activity: 24
Merit: 0
Hi Nemo, isn’t there a possibility / plan to have a backup or failover pool if main pool is down? This would be great
member
Activity: 112
Merit: 10
Hi,
complete beginner here. Could anyone direct me to a tutorial how to use this miner? I edited the .bat file accordingly, ran the benchmark without errors...it was still running after like 2-3 hours (atm using 4*1070 ti), is this normal? Does the benchmark run indefinitely or? Also how do I actually start mining? In the bin folder there are 6 different miners (Alexis 78, Alexis 78 cuda 9, CCminer Klaust, DTSM, Tpruvodcuda9 and Tpruvodx64), which one should I start if I want to mine in MPH with multi algo profit switching?

Sorry for noob questions, I am a bit overwhelmed by this...I found only 1 tutorial on youtube but it hasnt been much of a help (the guy doesnt show how to actually mine).

Thanks in advance

Its mining during benchmark, just switching every 120 seconds
1) Make sure video cards are set in batch, so if you have 6 nvidia cards you need the GPU values to have 0 1 2 3 4 5 and 0,1,2,3,4,5
2) AHashPool will give you more profit than Zpool and other pools (lower fees, higher results)
3) Make sure wallet set in batch file, then go to ahashpool and click wallet and enter to see miner is working (can be 15-60min delay for updates, this isn't realtime)
4) Change interval to 900 after benchmarks are complete (kill process, edit batch, run again)

You are now 'mining' as you watch the main screen and the 'miner' screen popup.  Look at Miner screen to see if its hashing.  Search wallet at pool to see if it shows your miner.
newbie
Activity: 8
Merit: 0
Anyone using 1080 or 1080 Ti cards running this miner care to share their hashrates? I can't seem to source 1070ti's at a reasonable price anymore (only slightly less than 1080) and want to build my next rig. Trying to determine what the best path is. Thanks in advance!
sr. member
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3
sr. member
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3

It seems it HAS to be forced
Code:
Stop-Process $_.Process -Force | Out-Null
[/quote]

thankyou https://github.com/nemosminer/NemosMiner-v2.3/issues/146
legendary
Activity: 1151
Merit: 1001
Replace what lines?!

PS: aaaah , its in wrapper.ps1

PPS:
Quote

It seems it HAS to be forced
Code:
Stop-Process $_.Process -Force | Out-Null
full member
Activity: 350
Merit: 100
testing Palgins new HSR miner for neoscrypt i have it downloading and Benchmarking but running into a issue with it not closing after completing benchmarks  

you can test for yourself here: https://github.com/nemosminer/NemosMiner-v2.3/issues/130

Best Regards
Nemo

Awesome.  Grin

I am testing now on my home office PC... just got back in from Mexico =)

KlaustT 8.18 --> 1.43 MH/S
Palgin 1.0.1 --> 1.75 MH/S

GTX 1080Ti with very mild OC -- (+100 core / +200 mem) in my home office PC.

Very nice!

But yes... it seems to keep on running. So far it has failed to close after several cycles.



I am not a Powershell coder... but it seems to be calling for a .txt file that doesn't exist ?
I've never coded powershell, after some researchs I found a fix, looks ugly but works, replace the codes in Wrapper.ps1:
Code:
   $PowerShell.Streams.Verbose.ReadAll() | ForEach-Object {
        $Line = $_

        if ($Line -like "*total speed:*" -or $Line -like "*accepted:*") {
            $Words = $Line -split " "
            $HashRate = [Decimal]$Words[$Words.IndexOf(($Words -like "*/s" | Select-Object -Last 1)) - 1]

            switch ($Words[$Words.IndexOf(($Words -like "*/s" | Select-Object -Last 1))]) {
                "kh/s" {$HashRate *= [Math]::Pow(1000, 1)}
                "mh/s" {$HashRate *= [Math]::Pow(1000, 2)}
                "gh/s" {$HashRate *= [Math]::Pow(1000, 3)}
                "th/s" {$HashRate *= [Math]::Pow(1000, 4)}
                "ph/s" {$HashRate *= [Math]::Pow(1000, 5)}
            }

            $HashRate | Set-Content ".\Wrapper_$Id.txt"
        } elseif ($Line -like "*overall speed is*") {
            $Words = $Line -split " "
            $HashRate = [Decimal]($Words -like "*H/s*" -replace ',', '' -replace "[^0-9.]",'' | Select-Object -Last 1)

            switch ($Words -like "*H/s*" -replace "[0-9.,]",'' | Select-Object -Last 1) {
                "KH/s" {$HashRate *= [Math]::Pow(1000, 1)}
                "mH/s" {$HashRate *= [Math]::Pow(1000, 2)}
                "MH/s" {$HashRate *= [Math]::Pow(1000, 2)}
            }

            $HashRate | Set-Content ".\Wrapper_$Id.txt"
        }

        $Line
    }
@minerx117 would have a elegant solution.
Happy mining!
sr. member
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3
Hi,

It seems I'm not the only one having issue connecting to zpool24h pool status.

I constantly have the message Error contacting pool, retrying..

Hopefully, if we join efforts we can get to the bottom of this...

What I found so far:

I have 2 minirigs.
When they start failing to get the pool status, it keeps trying for a long long time before receiving a response.
If I stop both and wait a few minutes and start one and wait few more minutes before starting the other, it seems that's easier to get it to work. but not good, since this is manual intervention and lots a minutes without mining.

I modified the zpool script to get more details and found that the web request succeed with http 200 status but the content is empty (no stats).

Trying to get the status manually from the browser or a port of wget have the same issue. And after a successful request with content, retrying will get an empty response again.

Trying to get the status from a different internet connection have the same issue (on my mobile phone).

trying a web proxy page, so it access the status api from a different location will have the same issue.

At this point I don't think it's a nemosminer script issue. probably some error not correctly handle on the zpool server or perhaps some API request rate limit.

As anyone have more info? Should send a post on the zpool topic but wanted to get the more info from the people having the same issue here.

I'm pretty much at the same place right now.

When I'm trying to access the status from my phone, it works the first time, then return a blank page. If I switch airplane mode on and off (and thus getting a new IP), it'll work again the first time, then blank after that.

So I think that - like you assumed - zpool must have added a request limit per IP.
I don't know what the time limit is, but if we can't get the pool status, that pretty much negate the point of having a multialgo switching miner.

I guess we'll have to forget about zpool for the time being.  Undecided

yes there is something going on all my rigs at home can no longer access zpool i can't even load home page in Internet browser

if i run a vpn they connect fine an can load the hompage so i believe this is a poolside issue not nemosminer...  i get similar results with hashrefinery sometime to...

Ahashpool and MPH work fine.....

i'll look into this more and see if there is anything i can do about it

Regards
Nemo
sr. member
Activity: 728
Merit: 256
NemosMiner-v3.8.1.3
A friend of mine (who told me about this project) has a problem:
when running program on 8-card rigs, sometimes when mining program is to be switched , Nemo is killing the current miner - he gets "driver failed "error and then 1 of cards disappears
Any idea what might be the cause and cure?
I confirmed same fenomena - gracefully closing Alexis miner to driver crash and the card running main display disappears Sad, need to restart
Even when making it manually with mouse Smiley
a possible workaround:
Code:
$_.Active += (Get-Date)-$_.Process.StartTime
                $_.Process.CloseMainWindow() | Out-Null
                Sleep 1
                # if miner starts from Schedler, CloseMainWindow() is now enought, we have to force stop process by Id
                Stop-Process $_.Process | Out-Null
to
Code:
$_.Active += (Get-Date)-$_.Process.StartTime
               # simply "Kill with power"
                Stop-Process $_.Process | Out-Null
                Sleep 2

thanks  :  https://github.com/nemosminer/NemosMiner-v2.3/issues/146
Jump to: