Search content
Sort by

Showing 12 of 12 results by ruphus
Post
Topic
Board Mining (Altcoins)
Re: Bitmain launches the Z9 Equihash miner
by
ruphus
on 08/05/2018, 10:30:57 UTC
If bitmain sell this device something must happen in equihash.

I agree. Why should they sell those ASICs, if they could keep on mining with all that hashing power instead?

I guess they have had some chat with some equihash devs and something will happen there. Maybe a fork for most important coins is comitted long ago without smaller miners knowing? Is zcash going to be new BTC (since ZEC is based on BTC) with the z-ability?

Really uncertain here, what exactly is happening, but I am sure several people behind the scenes know (prob. zokoo is one of them) and are acting a role.
Post
Topic
Board Tokens (Altcoins)
Re: [ANN][ICO] FINOM.IO (TabTrader, Nanopool) - TOKENIZED EQUITY OFFERING
by
ruphus
on 22/04/2018, 08:23:47 UTC
It seems as if their staff is completely ignoring this thread. Actually they send Update E-Mails from time to time and advertise Cloud mining within TabTrader (started @40% discount - now @30%).

I am a little scared, that finom is actually going to scam everyone, since they did a second ICO (after receiving $~40ish Millions?! in 1. ICO and they still advertise their cloud mining solution with an excessively discount (to catch ppl?)

Up to now, I am very uncertain if they actually do work on this good sounding finom project or if they just try to reach out for more money and then gtfo....  Huh
Post
Topic
Board Mining (Altcoins)
Re: [ANN] Bminer: a fast Equihash miner for CUDA GPUs (6.1.0)
by
ruphus
on 04/04/2018, 17:56:53 UTC
Can this coin be mined with Nvidia?
sure. title says "cuda gpus", which is nvidia.
Post
Topic
Board Tokens (Altcoins)
Re: [ANN][ICO] FINOM.IO (TabTrader, Nanopool) - TOKENIZED EQUITY OFFERING
by
ruphus
on 14/03/2018, 16:54:42 UTC
Is there any reason why tokens has not been distributed yet? I contributed in December and still waiting for you guys to sort problems which pops everyday?

Lastly I was told on your telegram that you lawyers are still working on the smart contract requirements....do I understand that there is no smart contract investors shares are tied to?

Thanks

Same question from me. I participated in the first ICO. It is said, that participants for that ICO will be able to claim FIN tokens as well as NOM tokens. How do we claim those and when will it be possible?

cheers
Post
Topic
Board Mining (Altcoins)
Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows)
by
ruphus
on 06/03/2018, 21:19:44 UTC
I have 6×1080 and 1× 1080 Ti in my mining rig.

I got recognized only 6×1080, the last 1080 Ti doesnt work.
Any ideas how to enable the 7th GPU??

Other miners works with 7 gpus.

Try updating your driver. I've read, that older nvidia-drivers didn't support the 1080 ti. Support started somewhere 384 or 387 I guess.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows)
by
ruphus
on 25/02/2018, 15:27:13 UTC
Any way to restart the miner after GPU unresponsiveness?

Code:
2018-02-21 14:20:28|gpu_id 4 54 1 unspecified launch failure
2018-02-21 14:20:28|gpu 4 unresponsive - check overclocking
2018-02-21 14:20:28|cudaMemcpy 1 failed

Use this Miner Autorun (Watchdog)

https://bitcointalk.org/index.php?topic=2071108.0

Thank you for that recommendation. That looks fine, but requires to use windows. I am running a linux rig... :-/ Any other idea?

You can use this little python script that I made to handle the miner:

Code:
#!/usr/bin/env python3

import subprocess
import sys

def restart_miner(proc):
    print('Restarting miner...')
    proc.kill()

def process_line(proc, line):
    if 'cudaMemcpy 1 failed' in line:
        restart_miner(proc)
    else:
        print(line, end='')

if __name__ == '__main__':
    while True:
        proc = subprocess.Popen(sys.argv[1:], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
        for line in proc.stdout:
            process_line(proc, line.decode())

Copy/paste the code in a file, make it executable and run it with "./filename your_launch_command". With a file named "start.py" and for the default dstm's launch script the command would be "./start.py ./zm --cfg-file zm.cfg".

The script will restart the miner when it sees the "cudaMemcpy 1 failed" error message.

BTW, it should work on Windows too if you have python3 installed. Remove the first line and replace "sys.argv[1:]" by "['zm.exe', '--cfg-file', 'zm.cfg']" (or whatever your launch command is).


yaay! thank you very much! I will check out your script today. i was hoping for such a way! thank you pustul!!
Post
Topic
Board Mining (Altcoins)
Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows)
by
ruphus
on 22/02/2018, 07:06:19 UTC
Hey @dstm I just wanted to ask you how you are calculating when to submit devfee shares vs normal shares. I have been looking through my logs for the last 24 hours and No matter what block of time I look at the number of *s vs +s comes out to around 7-8% instead of the 2% that it should be. Am I missing something?

Here are the 2 commands I used to parse out the characters and then do the math with them.

Code:
miner@simpleminer:/root/miner/dstm-v0.5.8$ cat zm.log.tmp |grep / |awk -F" " '{print $18}' | grep -o "*" | wc -l
357
miner@simpleminer:/root/miner/dstm-v0.5.8$ cat zm.log.tmp |grep / |awk -F" " '{print $18}' | grep -o "+" | wc -l
4235

357/(357+4235)*100=7.8%

Thanks!

I searched my logfile with notepad and found thos numbers:
50 *
1530 +

= 50/1530 = 3,27%
Post
Topic
Board Mining (Altcoins)
Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows)
by
ruphus
on 22/02/2018, 06:58:36 UTC
Any way to restart the miner after GPU unresponsiveness?

Code:
2018-02-21 14:20:28|gpu_id 4 54 1 unspecified launch failure
2018-02-21 14:20:28|gpu 4 unresponsive - check overclocking
2018-02-21 14:20:28|cudaMemcpy 1 failed

Use this Miner Autorun (Watchdog)

https://bitcointalk.org/index.php?topic=2071108.0

Thank you for that recommendation. That looks fine, but requires to use windows. I am running a linux rig... :-/ Any other idea?
Post
Topic
Board Mining (Altcoins)
Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows)
by
ruphus
on 21/02/2018, 13:47:01 UTC
Any way to restart the miner after GPU unresponsiveness?

Code:
2018-02-21 14:20:28|gpu_id 4 54 1 unspecified launch failure
2018-02-21 14:20:28|gpu 4 unresponsive - check overclocking
2018-02-21 14:20:28|cudaMemcpy 1 failed
Post
Topic
Board Mining (Altcoins)
Re: Ubuntu Nvidia Overclocking, Heat and Power Management: Definitive Guide
by
ruphus
on 20/02/2018, 21:26:33 UTC
Hey guys,

can anyone tell me, why I am not able to set individual fanspeeds on my ubuntu 7x 1060 rig?

Not working (any #):
Code:
rig1@rig1:~$ nvidia-settings -a [gpu:#]/GPUTargetFanSpeed=70
rig1@rig1:~$ nvidia-settings -a '[gpu:#]/GPUTargetFanSpeed=70'
rig1@rig1:~$ nvidia-settings -a "[gpu:#]/GPUTargetFanSpeed=70"


rig1@rig1:~$

Working:
Code:
rig1@rig1:~$ nvidia-settings -a GPUTargetFanSpeed=70

  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:0]) assigned value 70.
  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:1]) assigned value 70.
  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:2]) assigned value 70.
  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:3]) assigned value 70.
  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:4]) assigned value 70.
  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:5]) assigned value 70.
  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:6]) assigned value 70.
rig1@rig1:~$


BTW: setting
Code:
nvidia-settings -a [gpu:1]/GPUFanControlState=1
works (for any #.....

best regards
Post
Topic
Board Mining (Altcoins)
Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows)
by
ruphus
on 19/02/2018, 08:58:57 UTC
Where is the log file located?  I'm getting a crash 'cuda memory out of resources and fan's blowing like crazy all the sudden.  I just switched to 6.0,. then back to 5.8
All 6 1070's worked fine before.

Thanks in advance.

If you have not specified it will be in program directory" zm.log.
Running out of memory with ZM is really bad - equihash should not take more than 600MB on a card.

Same question here. I am using ubuntu 14.04 and therte is no zm.log within the zm folder (only zm.cfg).
Post
Topic
Board Service Announcements (Altcoins)
Re: 🔥🔥🔥🔥🔥[GUNBOT] Automatic Poloniex Profit Generator🔥🔥🔥🔥🔥
by
ruphus
on 09/03/2017, 21:02:34 UTC
Hey Gunthar,

after reading this threat I PMed you and bought one item at bitify. Plz PM for further instructions. Smiley I am happily awaiting to try out Gunbot! Smiley

greetings