Search content
Sort by

Showing 3 of 3 results by glumobo
Post
Topic
Board Mining (Altcoins)
Re: Claymore's ZCash AMD GPU Miner v2.1
by
glumobo
on 11/11/2016, 14:16:54 UTC
I will not release NVidia support. Neither Linux update. Please use mrb's miner for that OS and hardware.
That's your choice, but I don't see the reason why you deny yourself thousands of dollars worth of mining fees.

I'm not so greedy as some people say Smiley
It's not about money, there are several reasons why I'm not going to release ZCash miner for Linux in near future - most of haters who say that I stole SA engine are on Linux so let's they use some different miner. Also I don't like to see as someone applies IDA to my miner to see how it works. Also I don't like Linux, it's a pain for me.
NVidia: if I release miner for NVidia, these haters will again say that I stole SA engine. So there will not be NVidia version.
I think other devs will create public miners with similar speed for Linux and NVidia soon.

I am linux user and I am not a hater. Please consider making a miner for linux. If I can help please let me know. Thanks in advance.
Post
Topic
Board Mining (Altcoins)
Re: Claymore's ZCash AMD GPU Miner v1.0
by
glumobo
on 10/11/2016, 16:38:18 UTC
Linux version will be available in 1-2 days.

Hi Claymore,

I know you posted that there are not linux updates. It would be awesome if you can create a linux update, I know I cannot contribute with the code but I am willing to pay the fee. Please do not forget linux users, I use linux because in my case is easier to administrate my rigs remotely with the restrictions I have. If there is something that I can do please let me know. Thanks in advance.

Post
Topic
Board Mining (Altcoins)
Re: [ANN] Stratum for Ethereum. Increase earning up to 20% compared to getwork.
by
glumobo
on 31/08/2016, 03:44:28 UTC
(1)I get stuck on
Code:
2) start proxy with
 python ./eth-proxy.py

Using Ubuntu, I receiving: python: can't open file '.eth-proxy.py': [Errno 2] No such file or directory
I see the file in '/home/user/ethproxy/eth-proxy.py'

When using
Code:
python '/home/user/ethproxy/eth-proxy.py'
I receive ERROR proxy # Wrong Wallet! in the command terminal and nothing else happens?
........

Python use the current directory as the working directory, so if you run it from another directory you should change it, since the modules are located in the ethproxy directory, adding something like this should allow you to run from any directory

os.chdir(os.path.dirname(os.path.abspath(sys.argv[0])))