Bitcoin Forum
April 27, 2024, 06:23:54 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 [189] 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 ... 417 »
  Print  
Author Topic: [OS] nvOC easy-to-use Linux Nvidia Mining  (Read 417953 times)
Razvan17
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
September 21, 2017, 01:29:54 PM
 #3761

Is it possible to mine DUAL ETH+DCR with nvOC_V0019 on NiceHash. I mean to receive BTC instead of eth/dcr.

If yes, can someone help me how to set up oneBash?

Thx!
1714199034
Hero Member
*
Offline Offline

Posts: 1714199034

View Profile Personal Message (Offline)

Ignore
1714199034
Reply with quote  #2

1714199034
Report to moderator
1714199034
Hero Member
*
Offline Offline

Posts: 1714199034

View Profile Personal Message (Offline)

Ignore
1714199034
Reply with quote  #2

1714199034
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
pantalyra
Newbie
*
Offline Offline

Activity: 46
Merit: 0


View Profile
September 21, 2017, 01:44:01 PM
 #3762

Finally updated to v0019 and went headless because v0012 crashed and somehow corrupted the USB.

I am running 12 ASUS P106 mining cards remotely since they have no video out. This free's up my MSI1060 so I can put it back in my gaming pc (yeay I can game again).

All cards set at 150/900 115w and temps set at 70. I tried higher over clocks even small ones and the miner was crashing.

Currently just running Ethminer

Miner has run flawlessly for 48 hours so far. Averaging 283MH/s on ETH

Mining nanopool asia1 and almost no stale solutions

I am pretty happy, tomorrow I will set up Telegram and set up Dual Mining and see what I get. I look forward to getting telegram working.

Big thanks to FullZero  Grin

Why you have such high PL? Try to negative clock the core and a bit more memory clock. I am running p106-100 cards on 90-95PL with -200cc and 1400MC , seems pretty stable to me. On 12 cards the same as yours I have around 300 Mh/s with those settings.



This is my first rig and I just went off what was suggested by someone way earlier in the forums for a gtx1060.
Also, I tried going with lower power with current OC settings and and my hash rate dropped to around 250.

I just updated 1bash with your recommendations and we will see what happens!
Thank you kindly
damNmad
Full Member
***
Offline Offline

Activity: 378
Merit: 104


nvOC forever


View Profile
September 21, 2017, 02:06:19 PM
 #3763

Is it possible to mine DUAL ETH+DCR with nvOC_V0019 on NiceHash. I mean to receive BTC instead of eth/dcr.

If yes, can someone help me how to set up oneBash?

Thx!

Yes you can, that is coming in the upcoming update.

It goes like this:

Coin Name :
Code:
COIN="DUAL_NICEHASH"

Coin Details:

Please change the region according to your location; added it as usa but it can be eu or something else
You can also edit the dcri according to your requirements

Code:
DUAL_WORKER="$WORKERNAME"
DUAL_BTC_ADDRESS=$BTC_ADDRESS
DUAL_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
DUAL_DCR_POOL="stratum+tcp://decred.usa.nicehash.com:3354"
DUAL_EXTENSION_ARGUMENTS="-dcoin dcr -dcri 40 -esm 3 -allpools 1 -allcoins 1 -estale 0 -dbg -1"

Add this in 3main at appropriate place

Code:
if [ $COIN == "DUAL_NICEHASH" ]
then

if [ $CLAYMORE_VERSION == "10_0" ]
then
HCD='/home/m1/eth/10_0/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_8" ]
then
HCD='/home/m1/eth/9_8/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_7" ]
then
HCD='/home/m1/eth/9_7/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_5" ]
then
HCD='/home/m1/eth/9_5/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_4" ]
then
HCD='/home/m1/eth/9_4/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "8_0" ]
then
HCD='/home/m1/eth/8_0/ethdcrminer64'
fi

ETHASH_ADDR="$DUAL_BTC_ADDRESS.$DUAL_WORKER"
DCR_ADDR="$DUAL_BTC_ADDRESS.$DUAL_WORKER"

screen -dmS miner $HCD -epool $DUAL_ETHASH_POOL -ewal $ETHASH_ADDR -epsw x -allcoins 1 -allpools 1 -dpool $DUAL_DCR_POOL -dwal $DCR_ADDR -dpsw x $DUAL_EXTENSION_ARGUMENTS

if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi

BITCOIN="theGROUND"

while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi

Let me know if it works or not and ask me if you have any questions Smiley

DeepOnion    ▬▬  Anonymous and Untraceable  ▬▬    ENJOY YOUR PRIVACY  •  JOIN DEEPONION
▐▐▐▐▐▐▐▐   ANN  Whitepaper  Facebook  Twitter  Telegram  Discord    ▌▌▌▌▌▌▌▌
Get $ONION  (✔Cryptopia  ✔KuCoin)  |  VoteCentral  Register NOW!  |  Download DeepOnion
pantalyra
Newbie
*
Offline Offline

Activity: 46
Merit: 0


View Profile
September 21, 2017, 02:12:23 PM
Last edit: September 21, 2017, 02:39:46 PM by pantalyra
 #3764

Finally updated to v0019 and went headless because v0012 crashed and somehow corrupted the USB.

I am running 12 ASUS P106 mining cards remotely since they have no video out. This free's up my MSI1060 so I can put it back in my gaming pc (yeay I can game again).

All cards set at 150/900 115w and temps set at 70. I tried higher over clocks even small ones and the miner was crashing.

Currently just running Ethminer

Miner has run flawlessly for 48 hours so far. Averaging 283MH/s on ETH

Mining nanopool asia1 and almost no stale solutions

I am pretty happy, tomorrow I will set up Telegram and set up Dual Mining and see what I get. I look forward to getting telegram working.

Big thanks to FullZero  Grin

Why you have such high PL? Try to negative clock the core and a bit more memory clock. I am running p106-100 cards on 90-95PL with -200cc and 1400MC , seems pretty stable to me. On 12 cards the same as yours I have around 300 Mh/s with those settings.



This is my first rig and I just went off what was suggested by someone way earlier in the forums for a gtx1060.
Also, I tried going with lower power with current OC settings and and my hash rate dropped to around 250.

I just updated 1bash with your recommendations and we will see what happens!
Thank you kindly

I just updated 1bash with your recommendations and ran into some issues.

First it crashed immediately after rebooting with the new 1bash. After it restarted it's self again it started mining and the cards do seem to be mining at about 299MH/s.   Grin

Issue: About every 3 to 4 rounds of work that comes in, the cards are only registering at about 48MH/s. I am wondering how that is going to effect my over all average hash rates. I am also confused as to why the rates would fluctuate so much.
I will let it go for 6 to 12 hours and see what happens but if someone has insight on that, it would be appreciated.  Shocked

Update

...it crashed after about 30 minutes. "Illegal memory access" It does not seem these over clock settings are stable.
lards
Newbie
*
Offline Offline

Activity: 50
Merit: 0


View Profile
September 21, 2017, 02:38:26 PM
 #3765

Finally updated to v0019 and went headless because v0012 crashed and somehow corrupted the USB.

I am running 12 ASUS P106 mining cards remotely since they have no video out. This free's up my MSI1060 so I can put it back in my gaming pc (yeay I can game again).

All cards set at 150/900 115w and temps set at 70. I tried higher over clocks even small ones and the miner was crashing.

Currently just running Ethminer

Miner has run flawlessly for 48 hours so far. Averaging 283MH/s on ETH

Mining nanopool asia1 and almost no stale solutions

I am pretty happy, tomorrow I will set up Telegram and set up Dual Mining and see what I get. I look forward to getting telegram working.

Big thanks to FullZero  Grin

Why you have such high PL? Try to negative clock the core and a bit more memory clock. I am running p106-100 cards on 90-95PL with -200cc and 1400MC , seems pretty stable to me. On 12 cards the same as yours I have around 300 Mh/s with those settings.



This is my first rig and I just went off what was suggested by someone way earlier in the forums for a gtx1060.
Also, I tried going with lower power with current OC settings and and my hash rate dropped to around 250.

I just updated 1bash with your recommendations and we will see what happens!
Thank you kindly

I just updated 1bash with your recommendations and ran into some issues.

First it crashed immediately after rebooting with the new 1bash. After it restarted it's self again it started mining and the cards do seem to be mining at about 299MH/s.   Grin

Issue: About every 3 to 4 rounds of work that comes in, the cards are only registering at about 48MH/s. I am wondering how that is going to effect my over all average hash rates. I am also confused as to why the rates would fluctuate so much.
I will let it go for 6 to 12 hours and see what happens but if someone has insight on that, it would be appreciated.  Shocked

What do you mean by rounds? If you are talking about shown hashrate in the miner itself I had a weird issue when my hashrate dropped to about half of what I had. I increased the PL and changed the claymore version to 9.7 and I haven't seen such thing happen again.

Hope it helps!
pantalyra
Newbie
*
Offline Offline

Activity: 46
Merit: 0


View Profile
September 21, 2017, 02:44:16 PM
Last edit: September 21, 2017, 03:12:26 PM by pantalyra
 #3766

Finally updated to v0019 and went headless because v0012 crashed and somehow corrupted the USB.

I am running 12 ASUS P106 mining cards remotely since they have no video out. This free's up my MSI1060 so I can put it back in my gaming pc (yeay I can game again).

All cards set at 150/900 115w and temps set at 70. I tried higher over clocks even small ones and the miner was crashing.

Currently just running Ethminer

Miner has run flawlessly for 48 hours so far. Averaging 283MH/s on ETH

Mining nanopool asia1 and almost no stale solutions

I am pretty happy, tomorrow I will set up Telegram and set up Dual Mining and see what I get. I look forward to getting telegram working.

Big thanks to FullZero  Grin

Why you have such high PL? Try to negative clock the core and a bit more memory clock. I am running p106-100 cards on 90-95PL with -200cc and 1400MC , seems pretty stable to me. On 12 cards the same as yours I have around 300 Mh/s with those settings.



This is my first rig and I just went off what was suggested by someone way earlier in the forums for a gtx1060.
Also, I tried going with lower power with current OC settings and and my hash rate dropped to around 250.

I just updated 1bash with your recommendations and we will see what happens!
Thank you kindly

I just updated 1bash with your recommendations and ran into some issues.

First it crashed immediately after rebooting with the new 1bash. After it restarted it's self again it started mining and the cards do seem to be mining at about 299MH/s.   Grin

Issue: About every 3 to 4 rounds of work that comes in, the cards are only registering at about 48MH/s. I am wondering how that is going to effect my over all average hash rates. I am also confused as to why the rates would fluctuate so much.
I will let it go for 6 to 12 hours and see what happens but if someone has insight on that, it would be appreciated.  Shocked

What do you mean by rounds? If you are talking about shown hashrate in the miner itself I had a weird issue when my hashrate dropped to about half of what I had. I increased the PL and changed the claymore version to 9.7 and I haven't seen such thing happen again.

Hope it helps!

System crashed after another 30 minutes. "Illegal memory access" It rebooted its self and went back to mining. We will see if it continues to do that.
The low hash rates went away after a while. Holding steady at 298ish... Any idea why its crashing with that error?

I meant rounds of incoming work from the pool.

Update: Keeps crashing, not stable at all
korbi.bro
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
September 21, 2017, 03:14:52 PM
 #3767

Hi,

does anyone mine Ubiq with nvOC? I always get a connection error.
I'm also wondering why Ubiq is in the ebwf-section?

Yes, I do mine (many others too) UBIQ with nvOC, which pool you are trying to connect??

Please paste the code, not sure what you mean by ebwf section!

I will try to help you out with this if you provide the required info.

Thanks for your fast answer.

I try to connect to suprnova.

My Code:

COIN="UBQ"

UBQ_WORKER="#ubiq"
UBQ_ADDRESS="korbi.bro"
UBQ_POOL="stratum+tcp://ubiq.suprnova.cc:3030"
UBQ_EXTENSION_ARGUMENTS=""

@Bigf00t
i will try this. Thank you.
Bigf00t
Newbie
*
Offline Offline

Activity: 60
Merit: 0


View Profile
September 21, 2017, 03:25:57 PM
 #3768

I try to connect to suprnova.

My Code:

COIN="UBQ"

UBQ_WORKER="#ubiq"
UBQ_ADDRESS="korbi.bro"
UBQ_POOL="stratum+tcp://ubiq.suprnova.cc:3030"
UBQ_EXTENSION_ARGUMENTS=""

@Bigf00t
i will try this. Thank you.

For suprnova you will need another settings. See https://ubiq.suprnova.cc/index.php?page=gettingstarted.

You have to look for UBQ in 3main and change it over there. Because of all this different pools it makes it difficult to make one system that works out of the box.
damNmad
Full Member
***
Offline Offline

Activity: 378
Merit: 104


nvOC forever


View Profile
September 21, 2017, 03:50:38 PM
 #3769

I try to connect to suprnova.

My Code:

COIN="UBQ"

UBQ_WORKER="#ubiq"
UBQ_ADDRESS="korbi.bro"
UBQ_POOL="stratum+tcp://ubiq.suprnova.cc:3030"
UBQ_EXTENSION_ARGUMENTS=""

@Bigf00t
i will try this. Thank you.

For suprnova you will need another settings. See https://ubiq.suprnova.cc/index.php?page=gettingstarted.

You have to look for UBQ in 3main and change it over there. Because of all this different pools it makes it difficult to make one system that works out of the box.

just try this, don't change anything in 3main:

Code:
UBQ_WORKER="yourSuprNovaWorkerName"
UBQ_ADDRESS="yourSuprNovaLoginName"
UBQ_POOL="ubiq.suprnova.cc:3030"

ethminer doesn't like the stratum (I will test the options available like SP1 and SP2 and push it my next update) but claymore is happy with them. Let me know if it works.

EDIT:

Sorry, I have overlooked about the suprnova settings; @Bigf00t is right, please make sure your 3main code looks like this.

Code:
screen -dmS miner $HCD -S $UBQ_POOL -O $UBQADDR:x -SP 1 -U

DeepOnion    ▬▬  Anonymous and Untraceable  ▬▬    ENJOY YOUR PRIVACY  •  JOIN DEEPONION
▐▐▐▐▐▐▐▐   ANN  Whitepaper  Facebook  Twitter  Telegram  Discord    ▌▌▌▌▌▌▌▌
Get $ONION  (✔Cryptopia  ✔KuCoin)  |  VoteCentral  Register NOW!  |  Download DeepOnion
elsystem
Newbie
*
Offline Offline

Activity: 46
Merit: 0


View Profile
September 21, 2017, 05:47:54 PM
 #3770

Is it possible to cpu mine Zcoin and gpu mine simultaneously on nvoc?

anyone has an answer to this?

fullzero, assuming it's not currently possible to cpu mine Zcoin, can you please add it as a feature in the next version?

If its not currently possible to CPU mine ZCOIN, what is the point of adding it??

It is possible to CPU mine Zcoin. that's the whole point. i don't think nvoc is configured to cpu mine Zcoin and gpu mine on other coins. that's the reason i asked fullzero if he can add it...

Sorry for misunderstanding, ZCOIN CPU Mining isn't profitable at all (from my understanding). XMR used to be a little profitable; but it has changed in last 3 weeks; lets wait for fullzero's opinion.

No worries, perhaps the wording was confusing. ZCoin (XZC) is designed to be profitable on both CPUs and GPUs. Granted, CPU mining is not as profitable as GPU mining, but it's pretty good given that the rig CPU stays idle most of the time. I'm currently CPU mining on my old laptop CPU, and I get around 10$ a month. You'd probably do much better on a good CPU. I think they have an interesting project going on, you can check them out at https://bitcointalk.org/index.php?topic=1638450.0 or http://zcoin.io/

I think it would be great if fullzero can add the option to CPU mine Zcoin (XZC) simultaneously.


I think it can be added just like XMR (standalone CPU mining), but, like you said CPU mining doesn't give you any profit unless you have a processor with more cores.

fullzero, is it possible to add ZCoin (XZC) CPU mining capability, to run alongside GPU mining?
123sss
Sr. Member
****
Offline Offline

Activity: 315
Merit: 250


View Profile
September 21, 2017, 07:32:41 PM
 #3771

AsRock H110 PRO BTC+ why only 11 out of 13
Temporel
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
September 21, 2017, 08:49:21 PM
 #3772

AsRock H110 PRO BTC+ why only 11 out of 13

I use the same board with currently 12 cards but it works with 13 (well, for me and with a mix of 1070,1080 and 1080Ti)
papampi
Full Member
***
Offline Offline

Activity: 686
Merit: 140


Linux FOREVER! Resistance is futile!!!


View Profile WWW
September 21, 2017, 08:58:27 PM
Last edit: September 21, 2017, 09:19:02 PM by papampi
 #3773

@salfter
Is it possible for you to write a switch based on WhatToMine.com json api?
MPH switch with its high 30 minute api update time is almost useless,
by the time MPH api updates the coin difficulty has changed and there is no profit most of the times.

I'm not so good with programming but if you show us the way I think there are many here better than me that will help make it happen.
WhatToMine api can give tailored results and I think its api update time is 3 minutes (just posted to ask on its page)
We just need to set the cards, click calculate, then add a .json after coins with the rest of the address.
That way mixed card rigs gets the best results based on what they set too.

I was thinking of a way that WTM_Switch read from the given link, and the coins we set it to switch in 1bash
then it switch between the coins with whatever pools it is set in 1bash.

P.S.
I tried to give it a shot from your MPH_SWITCH, but its way over my league.

Razvan17
Newbie
*
Offline Offline

Activity: 18
Merit: 0


View Profile
September 21, 2017, 10:17:09 PM
 #3774

Is it possible to mine DUAL ETH+DCR with nvOC_V0019 on NiceHash. I mean to receive BTC instead of eth/dcr.

If yes, can someone help me how to set up oneBash?

Thx!

Yes you can, that is coming in the upcoming update.

It goes like this:

Coin Name :
Code:
COIN="DUAL_NICEHASH"

Coin Details:

Please change the region according to your location; added it as usa but it can be eu or something else
You can also edit the dcri according to your requirements

Code:
DUAL_WORKER="$WORKERNAME"
DUAL_BTC_ADDRESS=$BTC_ADDRESS
DUAL_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
DUAL_DCR_POOL="stratum+tcp://decred.usa.nicehash.com:3354"
DUAL_EXTENSION_ARGUMENTS="-dcoin dcr -dcri 40 -esm 3 -allpools 1 -allcoins 1 -estale 0 -dbg -1"

Add this in 3main at appropriate place

Code:
if [ $COIN == "DUAL_NICEHASH" ]
then

if [ $CLAYMORE_VERSION == "10_0" ]
then
HCD='/home/m1/eth/10_0/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_8" ]
then
HCD='/home/m1/eth/9_8/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_7" ]
then
HCD='/home/m1/eth/9_7/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_5" ]
then
HCD='/home/m1/eth/9_5/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_4" ]
then
HCD='/home/m1/eth/9_4/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "8_0" ]
then
HCD='/home/m1/eth/8_0/ethdcrminer64'
fi

ETHASH_ADDR="$DUAL_BTC_ADDRESS.$DUAL_WORKER"
DCR_ADDR="$DUAL_BTC_ADDRESS.$DUAL_WORKER"

screen -dmS miner $HCD -epool $DUAL_ETHASH_POOL -ewal $ETHASH_ADDR -epsw x -allcoins 1 -allpools 1 -dpool $DUAL_DCR_POOL -dwal $DCR_ADDR -dpsw x $DUAL_EXTENSION_ARGUMENTS

if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi

BITCOIN="theGROUND"

while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi

Let me know if it works or not and ask me if you have any questions Smiley


Thx for the answer!

Meanwhile i sorted it out in a different way. I modified the 1Bash file like this:
I selected NICE_ETHASH and there bellow on NICE_ETHASH in added some Claymore arguments like this:

# NICE_ETHASH autoconverts to BTC: ensure you update BTC_ADDRESS if you use NICE_ETHASH
NICE_ETHASH_WORKER="$WORKERNAME"
NICE_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
GENOIL_NICE_ETHASH_POOL="daggerhashimoto.usa.nicehash.com:3353"
NICE_ETHASH_EXTENSION_ARGUMENTS="-epool stratum+tcp://daggerhashimoto.usa.nicehash.com:3353 -ewal myNICEBTC adress.myWorker -epsw x -esm 3 -allpools 1 -estale 0 -dpool decred.eu.nicehash.com:3354 -dwal myNICEBTC adress.myWorker -dcoin dcr -dcri 95,40"   # add any additional claymore arguments desired here


It works well and until the next release i can go like this.
damNmad
Full Member
***
Offline Offline

Activity: 378
Merit: 104


nvOC forever


View Profile
September 21, 2017, 10:22:14 PM
 #3775

@salfter
Is it possible for you to write a switch based on WhatToMine.com json api?
MPH switch with its high 30 minute api update time is almost useless,
by the time MPH api updates the coin difficulty has changed and there is no profit most of the times.

I'm not so good with programming but if you show us the way I think there are many here better than me that will help make it happen.
WhatToMine api can give tailored results and I think its api update time is 3 minutes (just posted to ask on its page)
We just need to set the cards, click calculate, then add a .json after coins with the rest of the address.
That way mixed card rigs gets the best results based on what they set too.

I was thinking of a way that WTM_Switch read from the given link, and the coins we set it to switch in 1bash
then it switch between the coins with whatever pools it is set in 1bash.

P.S.
I tried to give it a shot from your MPH_SWITCH, but its way over my league.

This is exactly something I've started working on, stuck at the point where should I use the switch!!

My code just picks the coin with highest difficulty drop compared to 24 h difficulty. That may not be the best idea but that was something I've tried to achieve, so I started getting all the whattomine coins to 1bash. It can be tweaked to mine the current profitable coin too. It should be configured in such a way that it will edit the 1bash coin variable and coins all coins are already configured with auto oc.

The other thing we may miss is some coins are not specified in whattomine, not sure how we going to pull that info from?

DeepOnion    ▬▬  Anonymous and Untraceable  ▬▬    ENJOY YOUR PRIVACY  •  JOIN DEEPONION
▐▐▐▐▐▐▐▐   ANN  Whitepaper  Facebook  Twitter  Telegram  Discord    ▌▌▌▌▌▌▌▌
Get $ONION  (✔Cryptopia  ✔KuCoin)  |  VoteCentral  Register NOW!  |  Download DeepOnion
damNmad
Full Member
***
Offline Offline

Activity: 378
Merit: 104


nvOC forever


View Profile
September 21, 2017, 10:25:21 PM
 #3776

Is it possible to mine DUAL ETH+DCR with nvOC_V0019 on NiceHash. I mean to receive BTC instead of eth/dcr.

If yes, can someone help me how to set up oneBash?

Thx!

Yes you can, that is coming in the upcoming update.

It goes like this:

Coin Name :
Code:
COIN="DUAL_NICEHASH"

Coin Details:

Please change the region according to your location; added it as usa but it can be eu or something else
You can also edit the dcri according to your requirements

Code:
DUAL_WORKER="$WORKERNAME"
DUAL_BTC_ADDRESS=$BTC_ADDRESS
DUAL_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
DUAL_DCR_POOL="stratum+tcp://decred.usa.nicehash.com:3354"
DUAL_EXTENSION_ARGUMENTS="-dcoin dcr -dcri 40 -esm 3 -allpools 1 -allcoins 1 -estale 0 -dbg -1"

Add this in 3main at appropriate place

Code:
if [ $COIN == "DUAL_NICEHASH" ]
then

if [ $CLAYMORE_VERSION == "10_0" ]
then
HCD='/home/m1/eth/10_0/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_8" ]
then
HCD='/home/m1/eth/9_8/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_7" ]
then
HCD='/home/m1/eth/9_7/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_5" ]
then
HCD='/home/m1/eth/9_5/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_4" ]
then
HCD='/home/m1/eth/9_4/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "8_0" ]
then
HCD='/home/m1/eth/8_0/ethdcrminer64'
fi

ETHASH_ADDR="$DUAL_BTC_ADDRESS.$DUAL_WORKER"
DCR_ADDR="$DUAL_BTC_ADDRESS.$DUAL_WORKER"

screen -dmS miner $HCD -epool $DUAL_ETHASH_POOL -ewal $ETHASH_ADDR -epsw x -allcoins 1 -allpools 1 -dpool $DUAL_DCR_POOL -dwal $DCR_ADDR -dpsw x $DUAL_EXTENSION_ARGUMENTS

if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi

BITCOIN="theGROUND"

while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi

Let me know if it works or not and ask me if you have any questions Smiley


Thx for the answer!

Meanwhile i sorted it out in a different way. I modified the 1Bash file like this:
I selected NICE_ETHASH and there bellow on NICE_ETHASH in added some Claymore arguments like this:

# NICE_ETHASH autoconverts to BTC: ensure you update BTC_ADDRESS if you use NICE_ETHASH
NICE_ETHASH_WORKER="$WORKERNAME"
NICE_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
GENOIL_NICE_ETHASH_POOL="daggerhashimoto.usa.nicehash.com:3353"
NICE_ETHASH_EXTENSION_ARGUMENTS="-epool stratum+tcp://daggerhashimoto.usa.nicehash.com:3353 -ewal myNICEBTC adress.myWorker -epsw x -esm 3 -allpools 1 -estale 0 -dpool decred.eu.nicehash.com:3354 -dwal myNICEBTC adress.myWorker -dcoin dcr -dcri 95,40"   # add any additional claymore arguments desired here


It works well and until the next release i can go like this.


That's not a bad idea at all, but only trouble is when you want to switch back to old one, for that issue I used to have a copy of same code and comment it based on my requirements. Glad you found a way Smiley

DeepOnion    ▬▬  Anonymous and Untraceable  ▬▬    ENJOY YOUR PRIVACY  •  JOIN DEEPONION
▐▐▐▐▐▐▐▐   ANN  Whitepaper  Facebook  Twitter  Telegram  Discord    ▌▌▌▌▌▌▌▌
Get $ONION  (✔Cryptopia  ✔KuCoin)  |  VoteCentral  Register NOW!  |  Download DeepOnion
CryptAtomeTrader44
Full Member
***
Offline Offline

Activity: 340
Merit: 103

It is easier to break an atom than partialities AE


View Profile
September 21, 2017, 10:35:14 PM
 #3777

@salfter
Is it possible for you to write a switch based on WhatToMine.com json api?
MPH switch with its high 30 minute api update time is almost useless,
by the time MPH api updates the coin difficulty has changed and there is no profit most of the times.

I'm not so good with programming but if you show us the way I think there are many here better than me that will help make it happen.
WhatToMine api can give tailored results and I think its api update time is 3 minutes (just posted to ask on its page)
We just need to set the cards, click calculate, then add a .json after coins with the rest of the address.
That way mixed card rigs gets the best results based on what they set too.

I was thinking of a way that WTM_Switch read from the given link, and the coins we set it to switch in 1bash
then it switch between the coins with whatever pools it is set in 1bash.

P.S.
I tried to give it a shot from your MPH_SWITCH, but its way over my league.

+ 1 000 0000

I have awkwardly tried to write what you propose in one of my previous posts, but I am for this proposal. I was starting to make up my mind to do it myself, but like you, I do not have enough programming skills for it.
And I did not dare to ask Scott Alfter as Newbie of this forum.

Indeed, if we could directly switch to any crypto that is in the 1bash in focus of the calculations of profitability given by WTM, it would be top ++++!

I will add a request to your proposal: May also use additional parameters to this WTM_Switch.
For example, choose between average income over 3 days or 7 days or even immediate (the 3 minutes you quote). Or choose between average profitability (last column of their web page).

So today I found that "greencoin" (VTC) is more profitable hash over a week than Zencash which was largely ahead of ETH when I made this query of average profitability over 3 days and 7 days (91,000 Satochis of average over 7 days at 17:15).
CryptAtomeTrader44
Full Member
***
Offline Offline

Activity: 340
Merit: 103

It is easier to break an atom than partialities AE


View Profile
September 21, 2017, 10:54:08 PM
 #3778

Klaust ccminer is fixed!
Compiled it with new makefile.am and its working like a champ
Raised my neoscrypt hash rate by more than 20% from 800 to 1030~1060 on GTX-1070

And here is the compiled link if any one wanted

KTccminer Dropbox Download Link

Download, Extract to /home/m1/KTccminer
Then change neoscrypt lines in 3main

from :
Code:
if [ $COIN == "FTC" ]
then
HCD='/home/m1/SPccminer/ccminer'

To:
Code:
if [ $COIN == "FTC" ]
then
HCD='/home/m1/KTccminer/ccminer'

And in  Nicehash and MPH_switcher lines :

From:
Code:
     "cmd": "/home/m1/SPccminer/ccminer -a neoscrypt ... rest_of_the_line ... 

To:
Code:
     "cmd": "/home/m1/KTccminer/ccminer -a neoscrypt ... rest_of_the_line ... 


Code:
m1@m1-desktop-102:~/Downloads/ccminer-klaust$  ./ccminer -a neoscrypt -o stratum+tcp://hub.miningpoolhub.com:20510 -u papampi.nv101 -p x
ccminer 8.13-KlausT (64bit) for nVidia GPUs
Compiled with GCC 5.4 using Nvidia CUDA Toolkit 8.0

Based on pooler cpuminer 2.3.2 and the tpruvot@github fork
CUDA support by Christian Buchner, Christian H. and DJM34
Includes optimizations implemented by sp-hash, klaust, tpruvot and tsiv.

[2017-09-20 23:01:54] Starting Stratum on stratum+tcp://hub.miningpoolhub.com:20510
[2017-09-20 23:01:55] NVML GPU monitoring enabled.
0
1
2
3
[2017-09-20 23:01:55] GPU #1: waiting for data
[2017-09-20 23:01:55] 7 miner threads started, using 'neoscrypt' algorithm.
[2017-09-20 23:01:55] GPU #3: waiting for data
[2017-09-20 23:01:55] GPU #6: waiting for data
[2017-09-20 23:01:55] GPU #5: waiting for data
[2017-09-20 23:01:55] GPU #2: waiting for data
[2017-09-20 23:01:55] GPU #0: waiting for data
[2017-09-20 23:01:55] GPU #4: waiting for data
[2017-09-20 23:01:55] Stratum difficulty set to 256
[2017-09-20 23:01:55] Stratum difficulty set to 1374.19
[2017-09-20 23:01:55] hub.miningpoolhub.com:20510 neoscrypt block 1891623
[2017-09-20 23:01:56] hub.miningpoolhub.com:20510 neoscrypt block 1891624
[2017-09-20 23:02:00] hub.miningpoolhub.com:20510 neoscrypt block 1891625
[2017-09-20 23:02:02] GPU #2: Gigabyte GTX 1070, 1047.67 kH/s
[2017-09-20 23:02:02] GPU #1: Gigabyte GTX 1070, 1047.00 kH/s
[2017-09-20 23:02:02] GPU #0: Gigabyte GTX 1070, 1036.62 kH/s
[2017-09-20 23:02:02] GPU #5: Gigabyte GTX 1070, 1053.91 kH/s
[2017-09-20 23:02:02] GPU #6: Gigabyte GTX 1070, 1050.90 kH/s
[2017-09-20 23:02:02] GPU #4: Gigabyte GTX 1070, 1029.65 kH/s
[2017-09-20 23:02:02] GPU #3: Gigabyte GTX 1070, 1016.98 kH/s
[2017-09-20 23:02:08] GPU #3: Gigabyte GTX 1070, 1019.92 kH/s
[2017-09-20 23:02:09] accepted: 1/1 (100.00%), 7284.19 kH/s yay!!!
[2017-09-20 23:02:20] hub.miningpoolhub.com:20510 neoscrypt block 1891626
[2017-09-20 23:02:20] GPU #6: Gigabyte GTX 1070, 1060.29 kH/s
[2017-09-20 23:02:20] GPU #2: Gigabyte GTX 1070, 1048.35 kH/s
[2017-09-20 23:02:20] GPU #5: Gigabyte GTX 1070, 1051.61 kH/s
[2017-09-20 23:02:20] GPU #0: Gigabyte GTX 1070, 1028.51 kH/s
[2017-09-20 23:02:20] GPU #3: Gigabyte GTX 1070, 1022.12 kH/s
[2017-09-20 23:02:20] GPU #1: Gigabyte GTX 1070, 1045.29 kH/s
[2017-09-20 23:02:20] GPU #4: Gigabyte GTX 1070, 1030.82 kH/s

I download it but when i try to use, i had an error. So i recompile it dierctly on my miner machine, and i was an happy man to see what my 2 GTX 1070 (AUSU DUAL) on my Biostar BTC PRO+ (12 PCiE) hash at 2012 KH/s in the beginning, and around 1980 KH/s after ten or fifteen minutes.

But, i tried to use it for cryptonight after recompiling it (yours), and i had the same error : Wainting for data retry in 10 seconds.
Code:
m1@MINER44:~/KTccminer$ ./ccminer -a cryptonight -o stratum+tcp://europe.cryptonight-hub.miningpoolhub.com:20580 -u minerpseudo44.MINER44 -p xccminer 8.13-KlausT (64bit) for nVidia GPUs
Compiled with GCC 5.4 using Nvidia CUDA Toolkit 8.0

Based on pooler cpuminer 2.3.2 and the tpruvot@github fork
CUDA support by Christian Buchner, Christian H. and DJM34
Includes optimizations implemented by sp-hash, klaust, tpruvot and tsiv.

Try `ccminer --help' for more information.
[2017-09-21 23:42:57] stopping 0 threads
[2017-09-21 23:42:57] resetting GPUs
m1@MINER44:~/KTccminer$ ./ccminer -o stratum+tcp://europe.cryptonight-hub.miningpoolhub.com:20580 -u minerpseudo44.MINER44-p xccminer 8.13-KlausT (64bit) for nVidia GPUs
Compiled with GCC 5.4 using Nvidia CUDA Toolkit 8.0

Based on pooler cpuminer 2.3.2 and the tpruvot@github fork
CUDA support by Christian Buchner, Christian H. and DJM34
Includes optimizations implemented by sp-hash, klaust, tpruvot and tsiv.

[2017-09-21 23:43:32] Starting Stratum on stratum+tcp://europe.cryptonight-hub.miningpoolhub.com:20580
[2017-09-21 23:43:32] NVML GPU monitoring enabled.
[2017-09-21 23:43:32] 2 miner threads started, using 'bitcoin' algorithm.
0
1
[2017-09-21 23:43:32] GPU #1: waiting for data
[2017-09-21 23:43:32] GPU #0: waiting for data
[2017-09-21 23:43:32] ...retry after 10 seconds
[2017-09-21 23:43:35] GPU #0: waiting for data
[2017-09-21 23:43:35] GPU #1: waiting for data
[2017-09-21 23:43:38] GPU #1: waiting for data
[2017-09-21 23:43:38] GPU #0: waiting for data
[2017-09-21 23:43:41] GPU #0: waiting for data
[2017-09-21 23:43:41] GPU #1: waiting for data
[2017-09-21 23:43:42] ...retry after 10 seconds
[2017-09-21 23:43:44] GPU #0: waiting for data

I restore the salfter KTccminer and i tried the same command line. It works ! But after seven minutes, i had this message :

Code:
GPU 1: an illegal memory access was encountered
cryptonight/cuda_cryptonight_core.cu line 255

and the hashing stop immediatly ! grrrrr Undecided Angry

So my problem with Cryptonight hasher with the GPUs does not seem to be solved.

If you have an idea, I am taker, because I know how to apply some rules but I do not know how to program.

I was very surprised to note the time it takes to compile the KTccminer for an impressive number of graphics card! I had a big doubt after a while and I almost interrupted the ./build.sh, but I did not do anything and I'm very happy!
CryptAtomeTrader44
Full Member
***
Offline Offline

Activity: 340
Merit: 103

It is easier to break an atom than partialities AE


View Profile
September 21, 2017, 11:06:40 PM
 #3779

@salfter
Is it possible for you to write a switch based on WhatToMine.com json api?
MPH switch with its high 30 minute api update time is almost useless,
by the time MPH api updates the coin difficulty has changed and there is no profit most of the times.

I'm not so good with programming but if you show us the way I think there are many here better than me that will help make it happen.
WhatToMine api can give tailored results and I think its api update time is 3 minutes (just posted to ask on its page)
We just need to set the cards, click calculate, then add a .json after coins with the rest of the address.
That way mixed card rigs gets the best results based on what they set too.

I was thinking of a way that WTM_Switch read from the given link, and the coins we set it to switch in 1bash
then it switch between the coins with whatever pools it is set in 1bash.

P.S.
I tried to give it a shot from your MPH_SWITCH, but its way over my league.

This is exactly something I've started working on, stuck at the point where should I use the switch!!
You put me in a great impatience to see your work damNmad

My code just picks the coin with highest difficulty drop compared to 24 h difficulty. That may not be the best idea but that was something I've tried to achieve, so I started getting all the whattomine coins to 1bash. It can be tweaked to mine the current profitable coin too. It should be configured in such a way that it will edit the 1bash coin variable and coins all coins are already configured with auto oc.

The other thing we may miss is some coins are not specified in whattomine, not sure how we going to pull that info from?

Great Job ! Smiley Smiley Smiley Smiley Smiley Smiley Smiley Smiley Smiley Cheesy Cheesy Cheesy Cheesy Cheesy Cheesy Cheesy Cheesy

There will always be more coins than on Nicehash or MPH ...
it would be necessary to see for Zpool on the other hand. When I went on their page, I saw an impressive list of coins !
Schleicher
Hero Member
*****
Offline Offline

Activity: 675
Merit: 513



View Profile
September 22, 2017, 06:12:19 AM
 #3780

So my problem with Cryptonight hasher with the GPUs does not seem to be solved.

If you have an idea, I am taker, because I know how to apply some rules but I do not know how to program.
About 9 days ago there was a fix for the "illegal memory access" problem in ccminer-cryptonight.
Maybe your version is older than that.
The latest version is there:
https://github.com/KlausT/ccminer-cryptonight/releases

Pages: « 1 ... 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 [189] 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 ... 417 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!