Bitcoin Forum
June 23, 2024, 07:35:19 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Mining (Altcoins) / Re: GMiner v1.31 Equihash(BEAM on 3GB!, BTG)/CuckooCycle(AE, GRIN29, GRIN31 on 8GB) on: February 14, 2019, 11:38:32 AM
1080ti evga ftw3
this is what i've got at the moment - just started at nicehash

[INFO] [2019-02-14T12:35:38 01:00] Total 2.77 G/s Accepted shares 30 Rejected shares 2
[INFO] [2019-02-14T12:35:47 01:00] Received new job 1802124025585
[INFO] [2019-02-14T12:35:56 01:00] Accepted share
[INFO] [2019-02-14T12:36:02 01:00] Received new job 1802124025685
[INFO] [2019-02-14T12:36:06 01:00] Accepted share
[INFO] [2019-02-14T12:36:07 01:00] Received new job 1802124025820
[INFO] [2019-02-14T12:36:08 01:00] [GPU 0] Speed: 1.40 G/s Fidelity 0.877 Temp: 62C Fan: 40% Power: 191W 0.01 G/J
[INFO] [2019-02-14T12:36:08 01:00] [GPU 1] Speed: 1.41 G/s Fidelity 0.981 Temp: 54C Fan: 40% Power: 189W 0.01 G/J
[INFO] [2019-02-14T12:36:08 01:00] Total 2.80 G/s Accepted shares 32 Rejected shares 2
[INFO] [2019-02-14T12:36:09 01:00] Received new job 1802124025967
[INFO] [2019-02-14T12:36:19 01:00] Received new job 1802124026112
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [SNC] Stannum coin. Rebirth of neoscrypt. |Masternodes||ASIC Resistant| on: April 11, 2018, 03:58:23 PM
website looks kinda blank...

scam?
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]Metaverse|decentralised open platform of digital assets & digital identity on: March 16, 2018, 10:28:40 AM
"Dear Metaverse community:
The Metaverse mainnet has been under continuous attack through a modified future block timestamp, since March 15, 2018. It is clear that this is a large-scale and well coordinated attack.
To ensure a safe community and to get the consensus and the agreement of community, we hereby announce that Metaverse will have a hard fork on March 16, 2018 (GMT+8) at the block height of 1030000 and will release a fixed version within 24 hours from this announcement. All transactions happened in between this timeframe will be discarded.
We strongly urge users to stop transferring any Metaverse ETP along with any token issued on Metaverse Blockchain. We sincerely apologize for any inconvenience caused.
We are going to implement a permanent fix to prevent this type of attack from happening again.
Protecting your assets is and has always been our highest priority!
Thank you for your continuous support!
Metaverse Team
"

From https://mvs.org/
4  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows) on: March 01, 2018, 11:53:30 PM
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!!



Great stuff, thank you for that
5  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: January 23, 2018, 11:18:41 PM
Hey all, new here into mining. When using SMOS, tpruvot-2.1 miner, specifically with ANYTHING neoscrypt, I'm getting /root/xminer.sh: line 58: 18265 Illegal instruction $MINER_PATH $MINER_OPTIO
NS


I've copied the same settings I have verified working on my local system, but for some reason with SMOS and this miner, it's a no go. Can anyone help?

*edit*
Here is my connection string values

-a neoscrypt -o stratum+tcp://pool.unimining.net:4236 -u mywalletaddress -p c=GBX

try removing the "-p c=GBX"  from the your line

ensure no overclocks

Nothing... here's the full text:

*** ccminer 2.2 for nVidia GPUs by tpruvot@github config.json Built with the nVidia CUDA Toolkit 8.0 64-bits
Originally based on Christian Buchner and Christian H. project
Include some algos from alexis78, djm34, sp, tsiv and klausT.
BTC donation address: 1AJdfCpLWPNoAMDfHF1wD5y8VgKSSTHxPo (tpruvot)
[2018-01-17 16:35:50] Starting on stratum tcp://pool.unimining.net:4236
[2018-01-17 16:35:50] NVML GPU monitoring enabled.
[2018-01-17 16:35:50] 4 miner threads started, using 'neoscrypt' algorithm.
/root/xminer.sh: line 58: 10506 Illegal instruction $MINER_PATH $MINER_OPTIO
NS
Miner ended/crashed. Restarting miner in 10 seconds --------------

I usually have the same problem when i have a typo, or double space between parameters

Here is couple of examples which works just fine for me (1x 1080Ti smOS):

-a neoscrypt -o stratum+tcp://pool.bsod.pw:4233 -u wallet -p c=CRC
-a neoscrypt -o stratum+tcp://eu1.altminer.net:10004 -u wallet -p c=CRC
-a neoscrypt -o stratum+tcp://eu1.altminer.net:10002 -u wallet -p c=TZC

BTW - always start with 0/0 core/mem settings and then start to overclock. For me these works just fine: 140 core / 200 mem / 200w
6  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: January 12, 2018, 04:08:07 PM
Hi Guys,

Has any of you successfully set up electroneum mining by any chance?

I've been trying on my smsos sgminer, claymore-eth-v10.2 but no luck

EDIT: i have NVIDIA card

claymore-xmr-v11.xx amd
ccminer-skunk-krnlx Nvidea


Thanks man, i managed to mine it through ccminer!
7  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Mining OS] SimpleMining.net - Easy to use GPU MINING Operating System on: January 12, 2018, 03:01:54 PM
Hi Guys,

Has any of you successfully set up electroneum mining by any chance?

I've been trying on my smsos sgminer, claymore-eth-v10.2 but no luck

EDIT: i have NVIDIA card
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!