Author

Topic: [ mining os ] nvoc - page 202. (Read 418546 times)

full member
Activity: 224
Merit: 100
October 04, 2017, 06:46:33 AM
WARNING

Please don't click any links you receive from slack groups like shown below.

I was trying to add eBTC tokens to my ETH address, I received this email from slack group (pure fake) and lost 3.5 ETH and eBTC token airdrop from my wallet. I generally don't trust these sort of emails but it came in right time while I was trying to add tokens and I've logged into it using my private key (worst decision ever made in my life) don't know how I got trapped into it.

I know lot of pro. people don't use web wallets but I learned my lesson in an expensive way. Just posting here for newbies, don't want them to go through this like me.

Pic of the email I've received.

Quote

I can't forgive myself for doing that to me


 Cry Cry Cry Cry Cry Cry Cry




Im sorry for you man Sad

I also received the email but ignored it, since well, there is no upgrade to do on a web wallet.
OTOH, Ill still use my online wallet (mew).
You could have received a link with a fake desktop wallet (from a cloned website) and had the same thing happening to you btw.
full member
Activity: 378
Merit: 104
nvOC forever
October 04, 2017, 06:02:41 AM
WARNING

Please don't click any links you receive from slack groups like shown below.

I was trying to add eBTC tokens to my ETH address, I received this email from slack group (pure fake) and lost 3.5 ETH and eBTC token airdrop from my wallet. I generally don't trust these sort of emails but it came in right time while I was trying to add tokens and I've logged into it using my private key (worst decision ever made in my life) don't know how I got trapped into it.

I know lot of pro. people don't use web wallets but I learned my lesson in an expensive way. Just posting here for newbies, don't want them to go through this like me.

Pic of the email I've received.

Quote

I can't forgive myself for doing that to me


 Cry Cry Cry Cry Cry Cry Cry


full member
Activity: 224
Merit: 100
October 04, 2017, 05:49:26 AM


Regarding the temperature, enable maximus_auto_temp control and set your preffered temperature and it will auto adjust the fans to keep up your desired temp.

weird thing happend tonight. I was testing different cards and after using asccminer I suddenly lost control of the temperature of my 1080Ti, the 1070 are all fine.

I had to shutdown the rig...


since I do everything remotely, the only thing I could do was to update to the latest beta but now:

ewbf (with ZEN) crash every 10 minutes. I never had a crash in 2 weeks with v0019

Now there is a ccminer in the SPccminer directory but for some unknow reason to me, I cant mine VTC.

Ill either move back to v0019 or install a plain Linux distro. Its like there is something in nvOC that doesnt want me to mine VTC  Cheesy
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
October 04, 2017, 04:37:08 AM
After I hit the wall in forking Salfter MPH switch to WTM switch and since there is no news from salfter whether he is going to make it happen or not.
I am now trying to fork damNmad WTM switch to use btc_revenue
Hopefully some experts can help make this Wink

With my small knowledge in pyhon, here is what I done :

Code:
#!/usr/bin/env python2.7
import requests;

DEFAULT_COIN = {'tag': "ZEC"};

data = requests.get("https://whattomine.com/coins.json?utf8=%E2%9C%93&adapt_q_280x=0&adapt_q_380=0&adapt_q_fury=0&adapt_q_470=0&adapt_q_480=3&adapt_q_570=0&adapt_q_580=0&adapt_q_750Ti=0&adapt_q_10606=1&adapt_q_1070=1&adapt_1070=true&adapt_q_1080=1&adapt_q_1080Ti=1ð=true&factor%5Beth_hr%5D=30.0&factor%5Beth_p%5D=120.0&grof=true&factor%5Bgro_hr%5D=35.5&factor%5Bgro_p%5D=130.0&x11gf=true&factor%5Bx11g_hr%5D=11.5&factor%5Bx11g_p%5D=120.0&cn=true&factor%5Bcn_hr%5D=500.0&factor%5Bcn_p%5D=100.0&eq=true&factor%5Beq_hr%5D=430.0&factor%5Beq_p%5D=120.0&lre=true&factor%5Blrev2_hr%5D=35500.0&factor%5Blrev2_p%5D=130.0&ns=true&factor%5Bns_hr%5D=1050.0&factor%5Bns_p%5D=155.0&lbry=true&factor%5Blbry_hr%5D=270.0&factor%5Blbry_p%5D=120.0&bk2bf=true&factor%5Bbk2b_hr%5D=1600.0&factor%5Bbk2b_p%5D=120.0&bk14=true&factor%5Bbk14_hr%5D=2500.0&factor%5Bbk14_p%5D=125.0&pas=true&factor%5Bpas_hr%5D=940.0&factor%5Bpas_p%5D=120.0&skh=true&factor%5Bskh_hr%5D=26.5&factor%5Bskh_p%5D=120.0&factor%5Bl2z_hr%5D=420.0&factor%5Bl2z_p%5D=300.0&factor%5Bcost%5D=0.0&sort=Profit&volume=0&revenue=current&factor%5Bexchanges%5D%5B%5D=&factor%5Bexchanges%5D%5B%5D=bittrex&factor%5Bexchanges%5D%5B%5D=bleutrade&factor%5Bexchanges%5D%5B%5D=bter&factor%5Bexchanges%5D%5B%5D=c_cex&factor%5Bexchanges%5D%5B%5D=cryptopia&factor%5Bexchanges%5D%5B%5D=poloniex&factor%5Bexchanges%5D%5B%5D=yobit&dataset=Main&commit=Calculate");

coinsData = data.json()['coins'];
coins = coinsData.keys();
highBTCrev = {};

includeTags = [ 'HUSH', 'ZEC', 'ZEN', 'ZCL', 'SIB' , 'XDN', 'LBC'  ]

filterdCoins = {k: v for k, v in coinsData.iteritems() if v['tag']  in includeTags}
coins = filterdCoins.keys()
# print len(filterdCoins)

def findBTCrev(d1):
    return (d1)

for coin in coins:
    coinObj = coinsData[coin]
    coinObj['smartProfitability'] = findBTCrev(coinObj['btc_revenue'])
    highBTCrev[coin] = coinObj

for k in highBTCrev:
    print highBTCrev[k]['tag'], ' - ', highBTCrev[k]['smartProfitability']
log=open("current-profit", "w")
log.write(highBTCrev[k]['tag']+ ' - '+ highBTCrev[k]['smartProfitability'])
log.close()

#print sorted(filterdCoins.values(), key=lambda d: d['smartProfitability']);

BTCrevenueSort = sorted(filterdCoins.values(), key=lambda d: d['smartProfitability'],reverse=True);

finalCoin = DEFAULT_COIN;

if (len(BTCrevenueSort) > 1):
    finalCoin = BTCrevenueSort[0]

print finalCoin['tag'];

The output is :

m1@m1-desktop-101:~$ python2.7 damNmad-smartminer.py
Code:
 
SIB  -  0.00033
ZCL  -  0.00029
XDN  -  0.00001
HUSH  -  0.00035
ZEC  -  0.00031
ZEN  -  0.00040
LBC  -  0.00043
LBC

It only send 1 line to current-profit but show all on output.
We need it to send all results to current-profit and sort them by btc_revenue
and send the top coin to another file like top_profit to use it in 1bash
then in next run it should compare the current_profit with top_profit and change top_profit if it gives less than 10% of new top coin
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
October 04, 2017, 04:04:11 AM
I recently upgraded from version 0017 to 0019-1.2 beta, however claymore dual miner will timeout to any ethereum pool I connect. I tried other versions of claymore and no luck, genoil miner connected without any problems.

I would like to start dual mining again but I need some assistance in troubleshooting. I do not want to revert to 0017. Please help me, I was defeated by google and this forums search limit  Cry

Any ideas?

Also, if I run full p106 headless mode it will not set my fans to manual speed, if I turn the option to off it will set the fans to the manual speed.
Anybody have these issues?

Is the DOT, SLASH setting correct base on your pool ?
Code:
DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="DOT"    # DOT  or  SLASH    # formerly ETHERMINEdotORG

Yes I'm using the correct one, I even tried a different pool to test both DOT and SLASH. I have been heavily hoping on user error, combing through 1bash and trying to figure out what could of happened. I'm having no luck. Makes it even harder to accept that I wrote the IMG to a USB drive and I can't connect to ethereum pools while others can.  Huh

Please post the Eth lines in your 1bash
Check if you dont add a space after your wallet or pool address
like this :
Code:
ETH_ADDRESS="0xCd5A01dF2AEb625672940850F5d08c49CdCE2E93 "
newbie
Activity: 6
Merit: 0
October 03, 2017, 10:58:39 PM
I recently upgraded from version 0017 to 0019-1.2 beta, however claymore dual miner will timeout to any ethereum pool I connect. I tried other versions of claymore and no luck, genoil miner connected without any problems.

I would like to start dual mining again but I need some assistance in troubleshooting. I do not want to revert to 0017. Please help me, I was defeated by google and this forums search limit  Cry

Any ideas?

Also, if I run full p106 headless mode it will not set my fans to manual speed, if I turn the option to off it will set the fans to the manual speed.
Anybody have these issues?

Is the DOT, SLASH setting correct base on your pool ?
Code:
DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="DOT"    # DOT  or  SLASH    # formerly ETHERMINEdotORG

Yes I'm using the correct one, I even tried a different pool to test both DOT and SLASH. I have been heavily hoping on user error, combing through 1bash and trying to figure out what could of happened. I'm having no luck. Makes it even harder to accept that I wrote the IMG to a USB drive and I can't connect to ethereum pools while others can.  Huh
full member
Activity: 224
Merit: 100
October 03, 2017, 08:00:49 PM


Regarding the temperature, enable maximus_auto_temp control and set your preffered temperature and it will auto adjust the fans to keep up your desired temp.

weird thing happend tonight. I was testing different cards and after using asccminer I suddenly lost control of the temperature of my 1080Ti, the 1070 are all fine.

I had to shutdown the rig...

Any idea ?

TYIA
full member
Activity: 362
Merit: 102
October 03, 2017, 05:59:25 PM
One of my rigs running nvOC is using a MSI Z270-A PRO mobo with 7x 1080Ti's.  Rig is working great, but I got another 1080Ti I want to add to this rig and I'm all maxed out with 6 GPUs in the PCIe slot and the 7th in the M.2 slot via an adaptor.

So I'm going to swap out the mobo for an Asus PRIME Z270-A.  Already got the BIOS on the Asus configured (this will be my 2nd rig with a PRIME Z270-A).

So my question is, can I just stick the 32GB USB with nvOC on it from the MSI in the PRIME after I move the GPU's over, and expect it to just come up and start mining?

If not, no big deal, I'll just image a fresh USB, but since this mobo will be a permanent switch, but if I can safe some time just throwing on the USB used with the MSI, I'd rather do that, but if I'm going to run into issues, I'd rather not find out after tearing the rig down and rebuilding it with the new mobo.

Might as well try. In my case, I always keep a separate USB with a fresh nvOC installed in case I kill the primary one, which tends to happen a lot when I'm switching things around and doing a lot of force shutdowns, usually have boot or stability issues which are quickly fixed with a new usb with a new image.

I wasn't able to use the same usb when I switched to the B250 expert from the z270a prime.
full member
Activity: 378
Merit: 104
nvOC forever
October 03, 2017, 05:42:15 PM
Anyone tried this miner latest version?

https://github.com/KlausT/ccminer-cryptonight/releases

I'm having trouble compiling this miner! If someone compiled it successfully, mind sharing it?

Thanks in advance Smiley
full member
Activity: 224
Merit: 100
October 03, 2017, 05:25:08 PM
so I made more tests recently with different coins. (v0019)

All worked fine with great hashrate but VTC.

Tried my own pool, default 1bash pool and other vtc pools and its not mining.

Anyone is currently mining VTC with v0019 ? Any suggestion ?

TYIA

found my problem, there is no ccminer in the SPccminer directory. Any reason ?

TYIA
full member
Activity: 224
Merit: 100
October 03, 2017, 04:41:20 PM
Loving the dstm's zcash miner
With EWBF I had random gpu utilization drops below 90 and wdog alerts
But with dstm and same oc settings its been 2 days since I seen a utilization drop and alert and utilization is constantly on 99-100 on all gpu's

Recommend to try it if you are mining equihash.
https://bitcointalksearch.org/topic/ann-dstms-zcash-equihash-nvidia-miner-v062-linux-windows-2021765
Latest version is 0.5 download and replace your existing in
Code:
/home/m1/zec/zm/

agree, this should be the default zcash miner imo.
It is the default since 19-1.2

Thanks for the info.

Im stiill on v0019, should I upgrade or wait for "official" release (0020) ?
19-1.3 Coming soon, in a day or two.
There are no bugs/problems to be afraid of in 19-1.2 if you want to upgrade.
I think zm will be updated to 0.5 in 19-1.3 too.


thanks again
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
October 03, 2017, 04:33:49 PM
Loving the dstm's zcash miner
With EWBF I had random gpu utilization drops below 90 and wdog alerts
But with dstm and same oc settings its been 2 days since I seen a utilization drop and alert and utilization is constantly on 99-100 on all gpu's

Recommend to try it if you are mining equihash.
https://bitcointalksearch.org/topic/ann-dstms-zcash-equihash-nvidia-miner-v062-linux-windows-2021765
Latest version is 0.5 download and replace your existing in
Code:
/home/m1/zec/zm/

agree, this should be the default zcash miner imo.
It is the default since 19-1.2

Thanks for the info.

Im stiill on v0019, should I upgrade or wait for "official" release (0020) ?
19-1.3 Coming soon, in a day or two.
There are no bugs/problems to be afraid of in 19-1.2 if you want to upgrade.
I think zm will be updated to 0.5 in 19-1.3 too.
full member
Activity: 224
Merit: 100
October 03, 2017, 04:29:39 PM
Loving the dstm's zcash miner
With EWBF I had random gpu utilization drops below 90 and wdog alerts
But with dstm and same oc settings its been 2 days since I seen a utilization drop and alert and utilization is constantly on 99-100 on all gpu's

Recommend to try it if you are mining equihash.
https://bitcointalksearch.org/topic/ann-dstms-zcash-equihash-nvidia-miner-v062-linux-windows-2021765
Latest version is 0.5 download and replace your existing in
Code:
/home/m1/zec/zm/

agree, this should be the default zcash miner imo.
It is the default since 19-1.2

Thanks for the info.

Im stiill on v0019, should I upgrade or wait for "official" release (0020) ?
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
October 03, 2017, 04:22:19 PM
I recently upgraded from version 0017 to 0019-1.2 beta, however claymore dual miner will timeout to any ethereum pool I connect. I tried other versions of claymore and no luck, genoil miner connected without any problems.

I would like to start dual mining again but I need some assistance in troubleshooting. I do not want to revert to 0017. Please help me, I was defeated by google and this forums search limit  Cry

Any ideas?

Also, if I run full p106 headless mode it will not set my fans to manual speed, if I turn the option to off it will set the fans to the manual speed.
Anybody have these issues?

Is the DOT, SLASH setting correct base on your pool ?
Code:
DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="DOT"    # DOT  or  SLASH    # formerly ETHERMINEdotORG
newbie
Activity: 6
Merit: 0
October 03, 2017, 04:16:43 PM
I recently upgraded from version 0017 to 0019-1.2 beta, however claymore dual miner will timeout to any ethereum pool I connect. I tried other versions of claymore and no luck, genoil miner connected without any problems.

I would like to start dual mining again but I need some assistance in troubleshooting. I do not want to revert to 0017. Please help me, I was defeated by google and this forums search limit  Cry

Any ideas?

Also, if I run full p106 headless mode it will not set my fans to manual speed, if I turn the option to off it will set the fans to the manual speed.
Anybody have these issues?
newbie
Activity: 18
Merit: 0
October 03, 2017, 04:04:29 PM
Ok, I will do so and I'll let you know.

Thx!
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
October 03, 2017, 03:47:36 PM

Yes, Im sure. I did put that Telegram on my phone and I receive messages but when it cames to gpu, temp... I have no value there.

It would be great to have the screen you posted. Im running the latest ver. 1.2 of nvOC.

The first message can have some empty values since miner just started and logs are empty, wait for 2nd one or push it manually with this command
Code:
bash telegram
newbie
Activity: 18
Merit: 0
October 03, 2017, 03:33:55 PM

Yes, Im sure. I did put that Telegram on my phone and I receive messages but when it cames to gpu, temp... I have no value there.

It would be great to have the screen you posted. Im running the latest ver. 1.2 of nvOC.
full member
Activity: 686
Merit: 140
Linux FOREVER! Resistance is futile!!!
October 03, 2017, 03:26:37 PM

I just did it. Thx for advice. Let's see if it will restart again and what would be there about temps, gpu's.....

Can you please explain what is the difference between the 3 types of telegrams? papampi, baliminer and kk003.

I just tried the telegrams "papampi" and "BaliMiner" and I noticed basically is the same thing with few minor differences.

In my case with "papampi" selection it don't show values for GPU utilization, temp, fan and power.
Are you sure ?
It should show these :
Code:
Mining_Rigs:
Worker: nv102
Boot Time: 2017-10-02 20:01:34
System Up Time: up 1 day, 3 hours, 28 minutes
Miner Uptime:    09:38:32
Currently Mining: "ZEC"
Reboot Required: No
GPU Count: 7
GPU Utilization:
100 100 99 100 100 100 100
Temp, Fan, Power:
GPU 0, Target temp:  75, Current:  66, Diff:  9, Fan:  60, Power:  120.78
GPU 1, Target temp:  75, Current:  63, Diff:  12, Fan:  60, Power:  116.88
GPU 2, Target temp:  75, Current:  66, Diff:  9, Fan:  60, Power:  116.87
GPU 3, Target temp:  75, Current:  67, Diff:  8, Fan:  60, Power:  118.52
GPU 4, Target temp:  75, Current:  52, Diff:  23, Fan:  60, Power:  121.18
GPU 5, Target temp:  75, Current:  64, Diff:  11, Fan:  60, Power:  123.18
GPU 6, Target temp:  75, Current:  63, Diff:  12, Fan:  60, Power:  119.35
newbie
Activity: 18
Merit: 0
October 03, 2017, 03:12:43 PM

I just did it. Thx for advice. Let's see if it will restart again and what would be there about temps, gpu's.....

Can you please explain what is the difference between the 3 types of telegrams? papampi, baliminer and kk003.

I just tried the telegrams "papampi" and "BaliMiner" and I noticed basically is the same thing with few minor differences.

In my case with "papampi" selection it don't show values for GPU utilization, temp, fan and power.
Jump to: