Pages:
Author

Topic: [ mining os ] nvoc - page 86. (Read 418542 times)

newbie
Activity: 14
Merit: 0
January 07, 2018, 12:48:53 PM
Just saw the new KTccminer version 8.18.
KT ccminer i way faster than SPccminer on neoscrypt at least

You can compile it, it's realy easy
In /home/m1
Code:
mkdir KTccminer-818
cd KTccminer-818
wget https://github.com/KlausT/ccminer/archive/windows.zip
unzip windows.zip
cd ccminer-windows
./build.sh
mv ccminer ../

Then change the path to your new
/home/m1/KTccminer-818/ccminer for neoscrypt coin in 0miner
newbie
Activity: 14
Merit: 0
January 07, 2018, 12:28:46 PM

OK adding a coin, but how is profitable to mine DSR Huh?

And i want to tell all that unimining.net had some saturation on neoscrypt pools. I tried to mine GBX at this pool and they can't provide me any blocks to mine.

in additions :

1/ I'm not sure that all of us have a folder named KTccminer-817 in /home/m1
2/ I think there is a "typing error" in the command line
Code:
-o stratum+tcp://$DSR_POOL:$DRS_PORT

must be
Code:
-o stratum+tcp://$DSR_POOL:$DSR_PORT


You have to be more precise an readable in your post. You can post a modification understandable and easy to do without being a computer scientist or a computer technician. This system is named "easy to use" for reminder.

Thanks for adding.

You 're right sorry for the typo,
A patch is the easiest way to do the modification, you don't even need to know where to put the lines in the patched file.
just do
patch -p0 < file_with_the_patch
fastest than anything

KTccminer 817 was posted few days ago here by Papampi
I don't know if this coin is profitable, I just want to mine some so made the modification and shared.
newbie
Activity: 41
Merit: 0
January 07, 2018, 12:27:24 PM
I was having some issues this week with some pools and decide to rewrite the code for pool check in watchdog, it was supposed to be in v19-2.0 but we let it slide for that time.

It works almost same as network check but instead of checking for network it checks for pool and wait if its unreachable to prevent miner restart and eventually rig restarts.
Then After I wrote it I thought why wait and waste time when we can switch to an alternate pool
So I rewrite it again to add an alternate pool in 1bash whether its supported by the miner or not.
What left to do is to check the first pool and switch back as soon as it becomes available.


So here is my question:
How important it is for you guys to have an alternate pool?
And how important it is to switch back to main pool?


I'm asking this because I wrote the code for myself and to make it work with rest of miners and coins it needs more changes so I don't want to work on something not so useful Wink

It's clear that luckpool has had a lot of hits this week. They probably have lower fee than elsewhere but their servers seem unstable, so I decided to go elsewhere, even if it costs me a little more fee.
When I look at MPH and the number of pools they have and I have never had a single break with them, all I can switch home, I rock it.

I also had troubles with Nicehash who all of a sudden Wednesday night began to refuse my connections to their servers ... So I created a ticket home and removed nicehash from my list of WTM switch ...

Your proposal to send to another alternative pool is a good idea, but I have another one: Why not try the second corner directly in the WTM list.

Obviously this only works for those who use WTM_Switch, but it must be possible to combine both a second pool and a second coin with or without the SWITCH WTM.

I would love to have it now because ZPOOL is down and my riggs shouting at me.

I'm sorry Rumo, but you should wait a bit longer, as its better to wait and have a bug free code than get it sooner with some bugs that could cause problems.
The code is almost done, I'm working on an update script so users dont need to redo their 1bash and the update script do it for them, and thats writing a script to edit so many coins so its a long long update script Wink

But I will send you a pre-release so you can test it when its done.

Cool Stuff. Thanks.

Hi Papampi. I think ( from my point of view ) you should add a test for checking the Pool2 and Port2 variable. In your script if the variable is empty an error comes up. If you place
"if [ -z $variable to test ]
then"

in front of your script you can prevent that.

regards
newbie
Activity: 4
Merit: 0
January 07, 2018, 12:21:27 PM
I was having some issues this week with some pools and decide to rewrite the code for pool check in watchdog, it was supposed to be in v19-2.0 but we let it slide for that time.

It works almost same as network check but instead of checking for network it checks for pool and wait if its unreachable to prevent miner restart and eventually rig restarts.
Then After I wrote it I thought why wait and waste time when we can switch to an alternate pool
So I rewrite it again to add an alternate pool in 1bash whether its supported by the miner or not.
What left to do is to check the first pool and switch back as soon as it becomes available.


So here is my question:
How important it is for you guys to have an alternate pool?
And how important it is to switch back to main pool?


I'm asking this because I wrote the code for myself and to make it work with rest of miners and coins it needs more changes so I don't want to work on something not so useful Wink





This would be very useful, it's one of the things I always worry about in monitoring the rig. And being able to go back to the main pool would be great as I always use the pool closer to my rigs.
full member
Activity: 340
Merit: 103
It is easier to break an atom than partialities AE
January 07, 2018, 11:19:09 AM
DSR patch, not on WTM so no autoswitch
Code:
--- backups/1bash       2018-01-07 16:52:36.927391240 +0100
+++ 1bash       2018-01-07 16:42:10.831384399 +0100
@@ -113,7 +113,7 @@
 ######### ONION
 
 #ALGO - Neoscrypt
-######### PXC  FTC  ORB  TZC VIVO
+######### PXC  FTC  ORB  TZC VIVO DSR (No autoswitch for DSR))
 
 #ALGO - Myriad-Groestl
 ######### XMY
@@ -600,6 +600,14 @@
 TZC_POOL="pool.unimining.net"
 TZC_PORT="4237"
 TZC_INTENSITY="17"
+
+# DSR ## No Need to add stratum+tcp:// to server address
+DSR_WORKER="$WORKERNAME"
+DSR_ADDRESS="replace_with_your_address"
+DSR_POOL="pool.unimining.net"
+DSR_PORT="4234"
+DSR_INTENSITY="17"
+
 # 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"

--- backups/0miner      2018-01-07 16:51:33.845080736 +0100
+++ 0miner      2018-01-07 16:50:03.737208788 +0100
@@ -409,6 +409,13 @@
   screen -dmSL miner $HCD -a neoscrypt -o stratum+tcp://$TZC_POOL:$TZC_PORT -u $ADDR -p $MINER_PWD -i $TZC_INTENSITY
 fi
 
+if [ $COIN == "DSR" ]
+then
+  HCD='/home/m1/KTccminer-817/ccminer'
+  ADDR="$DSR_ADDRESS.$DSR_WORKER"
+  screen -dmSL miner $HCD -a neoscrypt -o stratum+tcp://$DSR_POOL:$DRS_PORT -u $ADDR -p $MINER_PWD -i $DSR_INTENSITY
+fi
+
 if [ $COIN == "VIVO" ]
 then
   HCD='/home/m1/KTccminer-817/ccminer'


OK adding a coin, but how is profitable to mine DSR Huh?

And i want to tell all that unimining.net had some saturation on neoscrypt pools. I tried to mine GBX at this pool and they can't provide me any blocks to mine.

in additions :

1/ I'm not sure that all of us have a folder named KTccminer-817 in /home/m1
2/ I think there is a "typing error" in the command line
Code:
-o stratum+tcp://$DSR_POOL:$DRS_PORT

must be
Code:
-o stratum+tcp://$DSR_POOL:$DSR_PORT


You have to be more precise an readable in your post. You can post a modification understandable and easy to do without being a computer scientist or a computer technician. This system is named "easy to use" for reminder.

Thanks for adding.

EDIT :

@L4ncel0t
I know it's nasty but it's my opinion:
their web page gives an impression of sidereal emptiness

And then the proposed exchanges seem to me rather second area even unknown, except coinmarkets and still I'm skeptical about this exchange (less than Yobit anyway)
newbie
Activity: 14
Merit: 0
January 07, 2018, 10:55:55 AM
DSR patch, not on WTM so no autoswitch
Code:
--- backups/1bash       2018-01-07 16:52:36.927391240 +0100
+++ 1bash       2018-01-07 16:42:10.831384399 +0100
@@ -113,7 +113,7 @@
 ######### ONION
 
 #ALGO - Neoscrypt
-######### PXC  FTC  ORB  TZC VIVO
+######### PXC  FTC  ORB  TZC VIVO DSR (No autoswitch for DSR))
 
 #ALGO - Myriad-Groestl
 ######### XMY
@@ -600,6 +600,14 @@
 TZC_POOL="pool.unimining.net"
 TZC_PORT="4237"
 TZC_INTENSITY="17"
+
+# DSR ## No Need to add stratum+tcp:// to server address
+DSR_WORKER="$WORKERNAME"
+DSR_ADDRESS="replace_with_your_address"
+DSR_POOL="pool.unimining.net"
+DSR_PORT="4234"
+DSR_INTENSITY="17"
+
 # 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"

--- backups/0miner      2018-01-07 16:51:33.845080736 +0100
+++ 0miner      2018-01-07 16:50:03.737208788 +0100
@@ -409,6 +409,13 @@
   screen -dmSL miner $HCD -a neoscrypt -o stratum+tcp://$TZC_POOL:$TZC_PORT -u $ADDR -p $MINER_PWD -i $TZC_INTENSITY
 fi
 
+if [ $COIN == "DSR" ]
+then
+  HCD='/home/m1/KTccminer-817/ccminer'
+  ADDR="$DSR_ADDRESS.$DSR_WORKER"
+  screen -dmSL miner $HCD -a neoscrypt -o stratum+tcp://$DSR_POOL:$DRS_PORT -u $ADDR -p $MINER_PWD -i $DSR_INTENSITY
+fi
+
 if [ $COIN == "VIVO" ]
 then
   HCD='/home/m1/KTccminer-817/ccminer'
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
January 07, 2018, 08:52:44 AM
Since apparently the Mega link of papampi poses problems of availability and complications due to the rules of this service to download version 19-2.0 of nvOC, I uploaded on an online file-saving service the file that contains the IMG

Here is the link:
http://dl.free.fr/hAWltP5uD

I did not test or check the download after uploading it.

Tell me if he is good or not.

NB: I live in France and this service is a very famous French provider (FREE), so it's written in French, but you only have to click on
Valider et Telecharger

Thanks mate,
Will add the link to GitHub after first confirmation.
full member
Activity: 378
Merit: 104
nvOC forever
January 07, 2018, 08:43:23 AM
Since apparently the Mega link of papampi poses problems of availability and complications due to the rules of this service to download version 19-2.0 of nvOC, I uploaded on an online file-saving service the file that contains the IMG

Here is the link:
http://dl.free.fr/hAWltP5uD

I did not test or check the download after uploading it.

Tell me if he is good or not.

NB: I live in France and this service is a very famous French provider (FREE), so it's written in French, but you only have to click on
Valider et Telecharger

Thanks mate.

Downloading it now, seems it is working, Once downloading finishes, i will upload it to Gdrive and create a torrent as well if possible.

newbie
Activity: 41
Merit: 0
January 07, 2018, 07:40:16 AM
I was having some issues this week with some pools and decide to rewrite the code for pool check in watchdog, it was supposed to be in v19-2.0 but we let it slide for that time.

It works almost same as network check but instead of checking for network it checks for pool and wait if its unreachable to prevent miner restart and eventually rig restarts.
Then After I wrote it I thought why wait and waste time when we can switch to an alternate pool
So I rewrite it again to add an alternate pool in 1bash whether its supported by the miner or not.
What left to do is to check the first pool and switch back as soon as it becomes available.


So here is my question:
How important it is for you guys to have an alternate pool?
And how important it is to switch back to main pool?


I'm asking this because I wrote the code for myself and to make it work with rest of miners and coins it needs more changes so I don't want to work on something not so useful Wink

It's clear that luckpool has had a lot of hits this week. They probably have lower fee than elsewhere but their servers seem unstable, so I decided to go elsewhere, even if it costs me a little more fee.
When I look at MPH and the number of pools they have and I have never had a single break with them, all I can switch home, I rock it.

I also had troubles with Nicehash who all of a sudden Wednesday night began to refuse my connections to their servers ... So I created a ticket home and removed nicehash from my list of WTM switch ...

Your proposal to send to another alternative pool is a good idea, but I have another one: Why not try the second corner directly in the WTM list.

Obviously this only works for those who use WTM_Switch, but it must be possible to combine both a second pool and a second coin with or without the SWITCH WTM.

I would love to have it now because ZPOOL is down and my riggs shouting at me.

I'm sorry Rumo, but you should wait a bit longer, as its better to wait and have a bug free code than get it sooner with some bugs that could cause problems.
The code is almost done, I'm working on an update script so users dont need to redo their 1bash and the update script do it for them, and thats writing a script to edit so many coins so its a long long update script Wink

But I will send you a pre-release so you can test it when its done.

Cool Stuff. Thanks.
full member
Activity: 340
Merit: 103
It is easier to break an atom than partialities AE
January 07, 2018, 07:39:45 AM
Since apparently the Mega link of papampi poses problems of availability and complications due to the rules of this service to download version 19-2.0 of nvOC, I uploaded on an online file-saving service the file that contains the IMG

Here is the link:
http://dl.free.fr/hAWltP5uD

I did not test or check the download after uploading it.

Tell me if it is good or not.

NB: I live in France and this service is a very famous French provider (FREE), so it's written in French, but you only have to click on
Valider et Telecharger
newbie
Activity: 44
Merit: 0
January 07, 2018, 06:23:09 AM
Does anybody know why auto switching are not working well when using remote bash?
I mean is not showing the correct current mining coin and the correct selected auto switch coins...

I have this settings in remote bash file:

remotebash="NO"
if [ $remotebash == "YES" -o $remotebash == "yes" ]; then
source <( curl --insecure $BASHURL ); fi
if [ $remotebash == "NO" -o $remotebash == "no" ]; then
COIN="ZCL"
WTM_AUTO_SWITCH="YES"
WTM_PROFIT_CHECK="YES"
WTM_AUTO_SWITCH_COINS="ZCL;XMR;BTC"
WTM_AUTO_SWITCH_SYNC_INTERVAL="60"
WTM_PROFIT_CHECK_INTERVAL="1"
WTM_MIN_DIFFERENCE="20"
WTM_CURRENCY="USD"
WTM_AUTO_SWITCH_URL="http://whattomine.com/coins.json?utf8=✓&adapt_q_280x=0&adapt_q_380=0&adapt_q_fury=0&adapt_q_470=0&adapt_q_480=0&adapt_q_570=0&adapt_q_580=0&adapt_q_vega56=0&adapt_q_vega64=0&adapt_q_750Ti=0&adapt_q_1050Ti=0&adapt_q_10606=13&adapt_10606=true&adapt_q_1070=0&adapt_q_1080=0&adapt_q_1080Ti=0ð=true&factor%5Beth_hr%5D=292.5&factor%5Beth_p%5D=1170.0&grof=true&factor%5Bgro_hr%5D=266.5&factor%5Bgro_p%5D=1170.0&x11gf=true&factor%5Bx11g_hr%5D=93.6&factor%5Bx11g_p%5D=1170.0&cn=true&factor%5Bcn_hr%5D=5590.0&factor%5Bcn_p%5D=910.0&eq=true&factor%5Beq_hr%5D=3510.0&factor%5Beq_p%5D=1170.0&lre=true&factor%5Blrev2_hr%5D=263900.0&factor%5Blrev2_p%5D=1170.0&ns=true&factor%5Bns_hr%5D=6500.0&factor%5Bns_p%5D=1170.0&lbry=true&factor%5Blbry_hr%5D=2210.0&factor%5Blbry_p%5D=1170.0&bk2bf=true&factor%5Bbk2b_hr%5D=12870.0&factor%5Bbk2b_p%5D=1040.0&bk14=true&factor%5Bbk14_hr%5D=20150.0&factor%5Bbk14_p%5D=1170.0&pas=true&factor%5Bpas_hr%5D=7540.0&factor%5Bpas_p%5D=1170.0&skh=true&factor%5Bskh_hr%5D=234.0&factor%5Bskh_p%5D=1170.0&factor%5Bl2z_hr%5D=420.0&factor%5Bl2z_p%5D=300.0&factor%5Bcost%5D=0.15&sort=Profitability7&volume=0&revenue=7d&factor%5Bexchanges%5D%5B%5D=&factor%5Bexchanges%5D%5B%5D=abucoins&factor%5Bexchanges%5D%5B%5D=bitfinex&factor%5Bexchanges%5D%5B%5D=bittrex&factor%5Bexchanges%5D%5B%5D=bleutrade&factor%5Bexchanges%5D%5B%5D=cryptopia&factor%5Bexchanges%5D%5B%5D=hitbtc&factor%5Bexchanges%5D%5B%5D=poloniex&factor%5Bexchanges%5D%5B%5D=yobit&dataset=Main&commit=Calculate"

ETC.......



What is remote bash?
I believe "remote Bash" was a feature introduced in the PoisonXA fork. From one of his release notes:

Quote
remote bash feature Will allow your to host your 1bash files remotely to edit your miners without direct connection

yes
and that's a very good option to control many rigs through a single bash file

Nice
But thats nothing new, its been in nvOC since long ago with _Parallax_MODE
Code:
_Parallax_MODE="NO"         # YES or NO # To deploy 1bash remotely from pastebin.com.

With a small difference in Parallax_MODE you own your config in pastebin but I dont know where the configs saves in pxa and who owns the web server

I am using my own 1bash, my own webserver for hosting it (inside a LAN). I have a good connection between rigs and remote bash, and remote bash is really working, but not perfectly....
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
January 07, 2018, 05:34:01 AM
Does anybody know why auto switching are not working well when using remote bash?
I mean is not showing the correct current mining coin and the correct selected auto switch coins...

I have this settings in remote bash file:

remotebash="NO"
if [ $remotebash == "YES" -o $remotebash == "yes" ]; then
source <( curl --insecure $BASHURL ); fi
if [ $remotebash == "NO" -o $remotebash == "no" ]; then
COIN="ZCL"
WTM_AUTO_SWITCH="YES"
WTM_PROFIT_CHECK="YES"
WTM_AUTO_SWITCH_COINS="ZCL;XMR;BTC"
WTM_AUTO_SWITCH_SYNC_INTERVAL="60"
WTM_PROFIT_CHECK_INTERVAL="1"
WTM_MIN_DIFFERENCE="20"
WTM_CURRENCY="USD"
WTM_AUTO_SWITCH_URL="http://whattomine.com/coins.json?utf8=✓&adapt_q_280x=0&adapt_q_380=0&adapt_q_fury=0&adapt_q_470=0&adapt_q_480=0&adapt_q_570=0&adapt_q_580=0&adapt_q_vega56=0&adapt_q_vega64=0&adapt_q_750Ti=0&adapt_q_1050Ti=0&adapt_q_10606=13&adapt_10606=true&adapt_q_1070=0&adapt_q_1080=0&adapt_q_1080Ti=0ð=true&factor%5Beth_hr%5D=292.5&factor%5Beth_p%5D=1170.0&grof=true&factor%5Bgro_hr%5D=266.5&factor%5Bgro_p%5D=1170.0&x11gf=true&factor%5Bx11g_hr%5D=93.6&factor%5Bx11g_p%5D=1170.0&cn=true&factor%5Bcn_hr%5D=5590.0&factor%5Bcn_p%5D=910.0&eq=true&factor%5Beq_hr%5D=3510.0&factor%5Beq_p%5D=1170.0&lre=true&factor%5Blrev2_hr%5D=263900.0&factor%5Blrev2_p%5D=1170.0&ns=true&factor%5Bns_hr%5D=6500.0&factor%5Bns_p%5D=1170.0&lbry=true&factor%5Blbry_hr%5D=2210.0&factor%5Blbry_p%5D=1170.0&bk2bf=true&factor%5Bbk2b_hr%5D=12870.0&factor%5Bbk2b_p%5D=1040.0&bk14=true&factor%5Bbk14_hr%5D=20150.0&factor%5Bbk14_p%5D=1170.0&pas=true&factor%5Bpas_hr%5D=7540.0&factor%5Bpas_p%5D=1170.0&skh=true&factor%5Bskh_hr%5D=234.0&factor%5Bskh_p%5D=1170.0&factor%5Bl2z_hr%5D=420.0&factor%5Bl2z_p%5D=300.0&factor%5Bcost%5D=0.15&sort=Profitability7&volume=0&revenue=7d&factor%5Bexchanges%5D%5B%5D=&factor%5Bexchanges%5D%5B%5D=abucoins&factor%5Bexchanges%5D%5B%5D=bitfinex&factor%5Bexchanges%5D%5B%5D=bittrex&factor%5Bexchanges%5D%5B%5D=bleutrade&factor%5Bexchanges%5D%5B%5D=cryptopia&factor%5Bexchanges%5D%5B%5D=hitbtc&factor%5Bexchanges%5D%5B%5D=poloniex&factor%5Bexchanges%5D%5B%5D=yobit&dataset=Main&commit=Calculate"

ETC.......



What is remote bash?
I believe "remote Bash" was a feature introduced in the PoisonXA fork. From one of his release notes:

Quote
remote bash feature Will allow your to host your 1bash files remotely to edit your miners without direct connection

yes
and that's a very good option to control many rigs through a single bash file

Nice
But thats nothing new, its been in nvOC since long ago with _Parallax_MODE
Code:
_Parallax_MODE="NO"         # YES or NO # To deploy 1bash remotely from pastebin.com.

With a small difference in Parallax_MODE you own your config in pastebin but I dont know where the configs saves in pxa and who owns the web server
newbie
Activity: 44
Merit: 0
January 07, 2018, 05:14:23 AM
Does anybody know why auto switching are not working well when using remote bash?
I mean is not showing the correct current mining coin and the correct selected auto switch coins...

I have this settings in remote bash file:

remotebash="NO"
if [ $remotebash == "YES" -o $remotebash == "yes" ]; then
source <( curl --insecure $BASHURL ); fi
if [ $remotebash == "NO" -o $remotebash == "no" ]; then
COIN="ZCL"
WTM_AUTO_SWITCH="YES"
WTM_PROFIT_CHECK="YES"
WTM_AUTO_SWITCH_COINS="ZCL;XMR;BTC"
WTM_AUTO_SWITCH_SYNC_INTERVAL="60"
WTM_PROFIT_CHECK_INTERVAL="1"
WTM_MIN_DIFFERENCE="20"
WTM_CURRENCY="USD"
WTM_AUTO_SWITCH_URL="http://whattomine.com/coins.json?utf8=✓&adapt_q_280x=0&adapt_q_380=0&adapt_q_fury=0&adapt_q_470=0&adapt_q_480=0&adapt_q_570=0&adapt_q_580=0&adapt_q_vega56=0&adapt_q_vega64=0&adapt_q_750Ti=0&adapt_q_1050Ti=0&adapt_q_10606=13&adapt_10606=true&adapt_q_1070=0&adapt_q_1080=0&adapt_q_1080Ti=0ð=true&factor%5Beth_hr%5D=292.5&factor%5Beth_p%5D=1170.0&grof=true&factor%5Bgro_hr%5D=266.5&factor%5Bgro_p%5D=1170.0&x11gf=true&factor%5Bx11g_hr%5D=93.6&factor%5Bx11g_p%5D=1170.0&cn=true&factor%5Bcn_hr%5D=5590.0&factor%5Bcn_p%5D=910.0&eq=true&factor%5Beq_hr%5D=3510.0&factor%5Beq_p%5D=1170.0&lre=true&factor%5Blrev2_hr%5D=263900.0&factor%5Blrev2_p%5D=1170.0&ns=true&factor%5Bns_hr%5D=6500.0&factor%5Bns_p%5D=1170.0&lbry=true&factor%5Blbry_hr%5D=2210.0&factor%5Blbry_p%5D=1170.0&bk2bf=true&factor%5Bbk2b_hr%5D=12870.0&factor%5Bbk2b_p%5D=1040.0&bk14=true&factor%5Bbk14_hr%5D=20150.0&factor%5Bbk14_p%5D=1170.0&pas=true&factor%5Bpas_hr%5D=7540.0&factor%5Bpas_p%5D=1170.0&skh=true&factor%5Bskh_hr%5D=234.0&factor%5Bskh_p%5D=1170.0&factor%5Bl2z_hr%5D=420.0&factor%5Bl2z_p%5D=300.0&factor%5Bcost%5D=0.15&sort=Profitability7&volume=0&revenue=7d&factor%5Bexchanges%5D%5B%5D=&factor%5Bexchanges%5D%5B%5D=abucoins&factor%5Bexchanges%5D%5B%5D=bitfinex&factor%5Bexchanges%5D%5B%5D=bittrex&factor%5Bexchanges%5D%5B%5D=bleutrade&factor%5Bexchanges%5D%5B%5D=cryptopia&factor%5Bexchanges%5D%5B%5D=hitbtc&factor%5Bexchanges%5D%5B%5D=poloniex&factor%5Bexchanges%5D%5B%5D=yobit&dataset=Main&commit=Calculate"

ETC.......



What is remote bash?
I believe "remote Bash" was a feature introduced in the PoisonXA fork. From one of his release notes:

Quote
remote bash feature Will allow your to host your 1bash files remotely to edit your miners without direct connection

yes
and that's a very good option to control many rigs through a single bash file
member
Activity: 126
Merit: 10
January 07, 2018, 04:26:25 AM
Does anybody know why auto switching are not working well when using remote bash?
I mean is not showing the correct current mining coin and the correct selected auto switch coins...

I have this settings in remote bash file:

remotebash="NO"
if [ $remotebash == "YES" -o $remotebash == "yes" ]; then
source <( curl --insecure $BASHURL ); fi
if [ $remotebash == "NO" -o $remotebash == "no" ]; then
COIN="ZCL"
WTM_AUTO_SWITCH="YES"
WTM_PROFIT_CHECK="YES"
WTM_AUTO_SWITCH_COINS="ZCL;XMR;BTC"
WTM_AUTO_SWITCH_SYNC_INTERVAL="60"
WTM_PROFIT_CHECK_INTERVAL="1"
WTM_MIN_DIFFERENCE="20"
WTM_CURRENCY="USD"
WTM_AUTO_SWITCH_URL="http://whattomine.com/coins.json?utf8=✓&adapt_q_280x=0&adapt_q_380=0&adapt_q_fury=0&adapt_q_470=0&adapt_q_480=0&adapt_q_570=0&adapt_q_580=0&adapt_q_vega56=0&adapt_q_vega64=0&adapt_q_750Ti=0&adapt_q_1050Ti=0&adapt_q_10606=13&adapt_10606=true&adapt_q_1070=0&adapt_q_1080=0&adapt_q_1080Ti=0ð=true&factor%5Beth_hr%5D=292.5&factor%5Beth_p%5D=1170.0&grof=true&factor%5Bgro_hr%5D=266.5&factor%5Bgro_p%5D=1170.0&x11gf=true&factor%5Bx11g_hr%5D=93.6&factor%5Bx11g_p%5D=1170.0&cn=true&factor%5Bcn_hr%5D=5590.0&factor%5Bcn_p%5D=910.0&eq=true&factor%5Beq_hr%5D=3510.0&factor%5Beq_p%5D=1170.0&lre=true&factor%5Blrev2_hr%5D=263900.0&factor%5Blrev2_p%5D=1170.0&ns=true&factor%5Bns_hr%5D=6500.0&factor%5Bns_p%5D=1170.0&lbry=true&factor%5Blbry_hr%5D=2210.0&factor%5Blbry_p%5D=1170.0&bk2bf=true&factor%5Bbk2b_hr%5D=12870.0&factor%5Bbk2b_p%5D=1040.0&bk14=true&factor%5Bbk14_hr%5D=20150.0&factor%5Bbk14_p%5D=1170.0&pas=true&factor%5Bpas_hr%5D=7540.0&factor%5Bpas_p%5D=1170.0&skh=true&factor%5Bskh_hr%5D=234.0&factor%5Bskh_p%5D=1170.0&factor%5Bl2z_hr%5D=420.0&factor%5Bl2z_p%5D=300.0&factor%5Bcost%5D=0.15&sort=Profitability7&volume=0&revenue=7d&factor%5Bexchanges%5D%5B%5D=&factor%5Bexchanges%5D%5B%5D=abucoins&factor%5Bexchanges%5D%5B%5D=bitfinex&factor%5Bexchanges%5D%5B%5D=bittrex&factor%5Bexchanges%5D%5B%5D=bleutrade&factor%5Bexchanges%5D%5B%5D=cryptopia&factor%5Bexchanges%5D%5B%5D=hitbtc&factor%5Bexchanges%5D%5B%5D=poloniex&factor%5Bexchanges%5D%5B%5D=yobit&dataset=Main&commit=Calculate"

ETC.......



What is remote bash?
I believe "remote Bash" was a feature introduced in the PoisonXA fork. From one of his release notes:

Quote
remote bash feature Will allow your to host your 1bash files remotely to edit your miners without direct connection
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
January 07, 2018, 04:01:08 AM
Does anybody know why auto switching are not working well when using remote bash?
I mean is not showing the correct current mining coin and the correct selected auto switch coins...

I have this settings in remote bash file:

remotebash="NO"
if [ $remotebash == "YES" -o $remotebash == "yes" ]; then
source <( curl --insecure $BASHURL ); fi
if [ $remotebash == "NO" -o $remotebash == "no" ]; then
COIN="ZCL"
WTM_AUTO_SWITCH="YES"
WTM_PROFIT_CHECK="YES"
WTM_AUTO_SWITCH_COINS="ZCL;XMR;BTC"
WTM_AUTO_SWITCH_SYNC_INTERVAL="60"
WTM_PROFIT_CHECK_INTERVAL="1"
WTM_MIN_DIFFERENCE="20"
WTM_CURRENCY="USD"
WTM_AUTO_SWITCH_URL="http://whattomine.com/coins.json?utf8=✓&adapt_q_280x=0&adapt_q_380=0&adapt_q_fury=0&adapt_q_470=0&adapt_q_480=0&adapt_q_570=0&adapt_q_580=0&adapt_q_vega56=0&adapt_q_vega64=0&adapt_q_750Ti=0&adapt_q_1050Ti=0&adapt_q_10606=13&adapt_10606=true&adapt_q_1070=0&adapt_q_1080=0&adapt_q_1080Ti=0ð=true&factor%5Beth_hr%5D=292.5&factor%5Beth_p%5D=1170.0&grof=true&factor%5Bgro_hr%5D=266.5&factor%5Bgro_p%5D=1170.0&x11gf=true&factor%5Bx11g_hr%5D=93.6&factor%5Bx11g_p%5D=1170.0&cn=true&factor%5Bcn_hr%5D=5590.0&factor%5Bcn_p%5D=910.0&eq=true&factor%5Beq_hr%5D=3510.0&factor%5Beq_p%5D=1170.0&lre=true&factor%5Blrev2_hr%5D=263900.0&factor%5Blrev2_p%5D=1170.0&ns=true&factor%5Bns_hr%5D=6500.0&factor%5Bns_p%5D=1170.0&lbry=true&factor%5Blbry_hr%5D=2210.0&factor%5Blbry_p%5D=1170.0&bk2bf=true&factor%5Bbk2b_hr%5D=12870.0&factor%5Bbk2b_p%5D=1040.0&bk14=true&factor%5Bbk14_hr%5D=20150.0&factor%5Bbk14_p%5D=1170.0&pas=true&factor%5Bpas_hr%5D=7540.0&factor%5Bpas_p%5D=1170.0&skh=true&factor%5Bskh_hr%5D=234.0&factor%5Bskh_p%5D=1170.0&factor%5Bl2z_hr%5D=420.0&factor%5Bl2z_p%5D=300.0&factor%5Bcost%5D=0.15&sort=Profitability7&volume=0&revenue=7d&factor%5Bexchanges%5D%5B%5D=&factor%5Bexchanges%5D%5B%5D=abucoins&factor%5Bexchanges%5D%5B%5D=bitfinex&factor%5Bexchanges%5D%5B%5D=bittrex&factor%5Bexchanges%5D%5B%5D=bleutrade&factor%5Bexchanges%5D%5B%5D=cryptopia&factor%5Bexchanges%5D%5B%5D=hitbtc&factor%5Bexchanges%5D%5B%5D=poloniex&factor%5Bexchanges%5D%5B%5D=yobit&dataset=Main&commit=Calculate"

ETC.......



What is remote bash?
newbie
Activity: 44
Merit: 0
January 07, 2018, 03:44:42 AM
Does anybody know why auto switching are not working well when using remote bash?
I mean is not showing the correct current mining coin and the correct selected auto switch coins...

I have this settings in remote bash file:

remotebash="NO"
if [ $remotebash == "YES" -o $remotebash == "yes" ]; then
source <( curl --insecure $BASHURL ); fi
if [ $remotebash == "NO" -o $remotebash == "no" ]; then
COIN="ZCL"
WTM_AUTO_SWITCH="YES"
WTM_PROFIT_CHECK="YES"
WTM_AUTO_SWITCH_COINS="ZCL;XMR;BTC"
WTM_AUTO_SWITCH_SYNC_INTERVAL="60"
WTM_PROFIT_CHECK_INTERVAL="1"
WTM_MIN_DIFFERENCE="20"
WTM_CURRENCY="USD"
WTM_AUTO_SWITCH_URL="http://whattomine.com/coins.json?utf8=✓&adapt_q_280x=0&adapt_q_380=0&adapt_q_fury=0&adapt_q_470=0&adapt_q_480=0&adapt_q_570=0&adapt_q_580=0&adapt_q_vega56=0&adapt_q_vega64=0&adapt_q_750Ti=0&adapt_q_1050Ti=0&adapt_q_10606=13&adapt_10606=true&adapt_q_1070=0&adapt_q_1080=0&adapt_q_1080Ti=0ð=true&factor%5Beth_hr%5D=292.5&factor%5Beth_p%5D=1170.0&grof=true&factor%5Bgro_hr%5D=266.5&factor%5Bgro_p%5D=1170.0&x11gf=true&factor%5Bx11g_hr%5D=93.6&factor%5Bx11g_p%5D=1170.0&cn=true&factor%5Bcn_hr%5D=5590.0&factor%5Bcn_p%5D=910.0&eq=true&factor%5Beq_hr%5D=3510.0&factor%5Beq_p%5D=1170.0&lre=true&factor%5Blrev2_hr%5D=263900.0&factor%5Blrev2_p%5D=1170.0&ns=true&factor%5Bns_hr%5D=6500.0&factor%5Bns_p%5D=1170.0&lbry=true&factor%5Blbry_hr%5D=2210.0&factor%5Blbry_p%5D=1170.0&bk2bf=true&factor%5Bbk2b_hr%5D=12870.0&factor%5Bbk2b_p%5D=1040.0&bk14=true&factor%5Bbk14_hr%5D=20150.0&factor%5Bbk14_p%5D=1170.0&pas=true&factor%5Bpas_hr%5D=7540.0&factor%5Bpas_p%5D=1170.0&skh=true&factor%5Bskh_hr%5D=234.0&factor%5Bskh_p%5D=1170.0&factor%5Bl2z_hr%5D=420.0&factor%5Bl2z_p%5D=300.0&factor%5Bcost%5D=0.15&sort=Profitability7&volume=0&revenue=7d&factor%5Bexchanges%5D%5B%5D=&factor%5Bexchanges%5D%5B%5D=abucoins&factor%5Bexchanges%5D%5B%5D=bitfinex&factor%5Bexchanges%5D%5B%5D=bittrex&factor%5Bexchanges%5D%5B%5D=bleutrade&factor%5Bexchanges%5D%5B%5D=cryptopia&factor%5Bexchanges%5D%5B%5D=hitbtc&factor%5Bexchanges%5D%5B%5D=poloniex&factor%5Bexchanges%5D%5B%5D=yobit&dataset=Main&commit=Calculate"

ETC.......

newbie
Activity: 1
Merit: 0
January 07, 2018, 03:17:48 AM
Complete noob here using nvoc 17 to mine ZCL & ZEN.  Everytime I connect to a pool (minepro,suprnova,luckpool) it shows my hash rate but not payment stats.  Sometimes payment stats will show up for a little then show $0.  Do these pools lag on info like that or am I mining for free when I don't see payment info?  Upwards of 12 hours with no data shown. 

However, I can mine NICE and get direct payment info on NiceHash.  Any help will be greatly appreciated. 
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
January 07, 2018, 03:06:08 AM
I was having some issues this week with some pools and decide to rewrite the code for pool check in watchdog, it was supposed to be in v19-2.0 but we let it slide for that time.

It works almost same as network check but instead of checking for network it checks for pool and wait if its unreachable to prevent miner restart and eventually rig restarts.
Then After I wrote it I thought why wait and waste time when we can switch to an alternate pool
So I rewrite it again to add an alternate pool in 1bash whether its supported by the miner or not.
What left to do is to check the first pool and switch back as soon as it becomes available.


So here is my question:
How important it is for you guys to have an alternate pool?
And how important it is to switch back to main pool?


I'm asking this because I wrote the code for myself and to make it work with rest of miners and coins it needs more changes so I don't want to work on something not so useful Wink

It's clear that luckpool has had a lot of hits this week. They probably have lower fee than elsewhere but their servers seem unstable, so I decided to go elsewhere, even if it costs me a little more fee.
When I look at MPH and the number of pools they have and I have never had a single break with them, all I can switch home, I rock it.

I also had troubles with Nicehash who all of a sudden Wednesday night began to refuse my connections to their servers ... So I created a ticket home and removed nicehash from my list of WTM switch ...

Your proposal to send to another alternative pool is a good idea, but I have another one: Why not try the second corner directly in the WTM list.

Obviously this only works for those who use WTM_Switch, but it must be possible to combine both a second pool and a second coin with or without the SWITCH WTM.

I would love to have it now because ZPOOL is down and my riggs shouting at me.

I'm sorry Rumo, but you should wait a bit longer, as its better to wait and have a bug free code than get it sooner with some bugs that could cause problems.
The code is almost done, I'm working on an update script so users dont need to redo their 1bash and the update script do it for them, and thats writing a script to edit so many coins so its a long long update script Wink

But I will send you a pre-release so you can test it when its done.
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
January 07, 2018, 02:00:02 AM
I was having some issues this week with some pools and decide to rewrite the code for pool check in watchdog, it was supposed to be in v19-2.0 but we let it slide for that time.

It works almost same as network check but instead of checking for network it checks for pool and wait if its unreachable to prevent miner restart and eventually rig restarts.
Then After I wrote it I thought why wait and waste time when we can switch to an alternate pool
So I rewrite it again to add an alternate pool in 1bash whether its supported by the miner or not.
What left to do is to check the first pool and switch back as soon as it becomes available.


So here is my question:
How important it is for you guys to have an alternate pool?
And how important it is to switch back to main pool?


I'm asking this because I wrote the code for myself and to make it work with rest of miners and coins it needs more changes so I don't want to work on something not so useful Wink

It's clear that luckpool has had a lot of hits this week. They probably have lower fee than elsewhere but their servers seem unstable, so I decided to go elsewhere, even if it costs me a little more fee.
When I look at MPH and the number of pools they have and I have never had a single break with them, all I can switch home, I rock it.

I also had troubles with Nicehash who all of a sudden Wednesday night began to refuse my connections to their servers ... So I created a ticket home and removed nicehash from my list of WTM switch ...

Your proposal to send to another alternative pool is a good idea, but I have another one: Why not try the second corner directly in the WTM list.

Obviously this only works for those who use WTM_Switch, but it must be possible to combine both a second pool and a second coin with or without the SWITCH WTM.

Thanks for sharing your thoughts on the alternate pool
As you mentioned your solution gonna work only for those who use wtm switcher and not all,
and more important problem is most of us usually mine on one pool for all of our coins so for example if you mine ZCL on suprnova for sure your ZEC pool is suprnova  too, so if its ZCL pool is down there is a big chance that its ZEC pool is down too.
So its better to switch pool instead of switching coins.
newbie
Activity: 41
Merit: 0
January 06, 2018, 03:52:00 PM
I was having some issues this week with some pools and decide to rewrite the code for pool check in watchdog, it was supposed to be in v19-2.0 but we let it slide for that time.

It works almost same as network check but instead of checking for network it checks for pool and wait if its unreachable to prevent miner restart and eventually rig restarts.
Then After I wrote it I thought why wait and waste time when we can switch to an alternate pool
So I rewrite it again to add an alternate pool in 1bash whether its supported by the miner or not.
What left to do is to check the first pool and switch back as soon as it becomes available.


So here is my question:
How important it is for you guys to have an alternate pool?
And how important it is to switch back to main pool?


I'm asking this because I wrote the code for myself and to make it work with rest of miners and coins it needs more changes so I don't want to work on something not so useful Wink

It's clear that luckpool has had a lot of hits this week. They probably have lower fee than elsewhere but their servers seem unstable, so I decided to go elsewhere, even if it costs me a little more fee.
When I look at MPH and the number of pools they have and I have never had a single break with them, all I can switch home, I rock it.

I also had troubles with Nicehash who all of a sudden Wednesday night began to refuse my connections to their servers ... So I created a ticket home and removed nicehash from my list of WTM switch ...

Your proposal to send to another alternative pool is a good idea, but I have another one: Why not try the second corner directly in the WTM list.

Obviously this only works for those who use WTM_Switch, but it must be possible to combine both a second pool and a second coin with or without the SWITCH WTM.

I would love to have it now because ZPOOL is down and my riggs shouting at me.
Pages:
Jump to: