Bitcoin Forum
May 23, 2025, 02:31:31 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 7 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Firo (FIRO) - Implementing ZKP privacy without trusted setup on: February 16, 2021, 07:02:23 PM
shortly before the 51% attack I sent 25 firo with lelantus. (from private balance)
Since then I have those 25 firos in pending state. I already abandoned the original transaction. The address I sent them to doesnt have them.
Is there anything I can do?

Thanks
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Firo (FIRO) - Implementing ZKP privacy without trusted setup on: January 29, 2021, 12:42:38 PM
send a transaction from core wallet, it defaulted to private balance.
Now it says transaction is offline (watch only?), cant re-broadcast (lelantus disabled atm) and cant find transaction id on the chain.
coins are gone.
Any suggestions?

just wait for lelantus to be re-enabled? abandon transaction?
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] STRAKS - A POW/Masternode Cryptocurrency focused on e-commerce utility on: March 02, 2020, 09:34:44 PM
He´s dead Jim
4  Alternate cryptocurrencies / Mining (Altcoins) / Re: ccminer 1.2.0/sgminer 0.1.3 for MTP: Fastest MTP miner for nvidia cards on: January 08, 2020, 09:40:37 PM
im on ubuntu 16.04, 6x 1080ti, ccminer 1.3.1, nvidia driver 440.44 and seeing 100% cpu (i5 quad)

edit:
I sorta fixed it for now by setting --cpu-affinity=0x1
no hit on hash rate
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 📌[ANN][ZER]🔐ZERO - Your Transactions Are Your Business ✅ on: November 06, 2019, 02:36:03 PM

Updating Markets on CMC would be nice too.
https://coinmarketcap.com/currencies/zero/#markets
6  Alternate cryptocurrencies / Mining (Altcoins) / Re: GMiner v1.65 Equihash(BEAM, BTG, YCASH)/CuckooCycle(AE, SWAP, GRIN)/Eaglesong on: September 19, 2019, 05:43:53 AM
In newer versions, the miner is crashing with my palit RTX 2070's mining GRIN. Tried updating the drivers, but no luck. Older version works, and e.g. BEAMV2 is working for the latest version. I can also mine GRIN on other RTX2070 cards. Anyone have any idea why?
Miner crashing on cuckarood29? Have you tried on stock GPU settings?
Btw update for cuckarood29 almost done, it will yield +10% performance grow
AS many time before it was a riser issue, and not even on the cards tested. Very strange that it only affected GRIN.

Looking fwd to that new version, a game changer!

I have the same with mining beam on a rtx 2080 rig, almost instantly gpus crash and are dropped. Only way to recover is a cold boot.
MTP is running fine for weeks.

Think I will have to take a look at the risers aswell.
7  Alternate cryptocurrencies / Mining (Altcoins) / Re: GMiner v1.59 Equihash(BEAM, VDS, BTG, YCASH)/CuckooCycle(AE, SWAP, GRIN) on: August 21, 2019, 12:40:33 PM
Mine are MSI 1080ti aero

core + 150
mem +500

core is at ~ 1600
mem ~ 10500
8  Alternate cryptocurrencies / Mining (Altcoins) / Re: GMiner v1.59 Equihash(BEAM, VDS, BTG, YCASH)/CuckooCycle(AE, SWAP, GRIN) on: August 21, 2019, 10:50:04 AM
same here, I much prefer running em cool and quiet with minor performance impact

1.59 --oc1 enabled
1080ti
165w
~55 Sols
9  Alternate cryptocurrencies / Mining (Altcoins) / Linux Nvidia Monitoring Script for checkmk nagios on: August 08, 2019, 09:10:13 AM
I have been searching for a while for a simple way to monitor nvidia temps (and possibly more) with checkmk nagios.
Found lots of different methods, either way to complicated, not working at all or to hard for me to adapt (I am primarily a windows sys admin, medium skills on linux. Good on powershell, medium to less on everything else)
I am sure there are better, more elegant and simpler ways to achieve what I wanted. This is what I came up with.
The agent actually does detect the core temps by itself, but for some reason this is not being detected on a host rescan.

CheckMK is a free and complete monitoring solution I use professionally and in private.
https://checkmk.com/cms_install_packages.html

This script can be put in the checkmk agent local folder /usr/bin/check_mk_agent/local and will be executed by the agent.
Only thing that needs to be adapted is your preferred temp range.
The output is what checkmk requires.
0 normal
1 warning
2 crit

Result looks like this (everything else beside GPU is built in ofc, Miner process is a custom discovery rule)
https://i.imgur.com/noqwFz9.png

Maybe someone finds this useful.
Please take, copy, improve, whatever...

# Code
count=`nvidia-smi --query-gpu=index --format=csv,noheader`

for index in $count
do

gpu_temp=`nvidia-smi -i $index --query-gpu=temperature.gpu --format=csv,noheader`
gpu_fan=`nvidia-smi -i $index --query-gpu=fan.speed --format=csv,noheader`
gpu_name=`nvidia-smi -i $index --query-gpu=gpu_name --format=csv,noheader`
gpu_power=`nvidia-smi -i $index --query-gpu=power.draw --format=csv,noheader`

if ((10<=$gpu_temp && $gpu_temp<=70))
then echo "0 GPU$index - $gpu_name TEMP $gpu_temp"C" - FAN $gpu_fan - $gpu_power"

elif ((71<=$gpu_temp && $gpu_temp<=72))
then echo "1 GPU$index - $gpu_name TEMP $gpu_temp"C" - FAN $gpu_fan - $gpu_power"

elif ((73<=$gpu_temp && $gpu_temp<=80))
then echo "2 GPU$index - $gpu_name TEMP $gpu_temp"C" - FAN $gpu_fan - $gpu_power"

else echo "2 GPU$index - UNKNOWN"
fi

done

#Code

10  Alternate cryptocurrencies / Mining (Altcoins) / Re: ccminer: Fastest MTP miner for nvidia cards on: July 09, 2019, 08:35:08 AM
much appreciated
11  Alternate cryptocurrencies / Mining (Altcoins) / Re: ccminer: Fastest MTP miner for nvidia cards on: July 09, 2019, 06:04:37 AM
had another issue.
Miner was flooded with "stratrum thread error" and not qutting.
Process is running in a script loop wich ofc didnt take hold because process was still alive.
12  Alternate cryptocurrencies / Mining (Altcoins) / Re: ccminer: Fastest MTP miner for nvidia cards on: July 05, 2019, 09:43:37 AM
very well, I disabled Windows Error Reporting and UI.

HKEY_CURRENT_USER\Software\Microsoft\Windows\Windows Error Reporting

Thanks
13  Alternate cryptocurrencies / Mining (Altcoins) / Re: ccminer: Fastest MTP miner for nvidia cards on: July 05, 2019, 05:23:01 AM
it is on a script loop.
Doesnt work though, process is stuck until you click away the message.

Mining on 2miners eu server
14  Alternate cryptocurrencies / Mining (Altcoins) / Re: ccminer: Fastest MTP miner for nvidia cards on: July 04, 2019, 02:54:00 PM
sadly have to report another crash with version .23

https://i.imgur.com/UyUGC1a.png
15  Alternate cryptocurrencies / Mining (Altcoins) / Re: ccminer: Fastest MTP miner for nvidia cards on: July 01, 2019, 01:43:28 PM
.23 running fine for 2 days now, no issues at all so far.
Just for the record rig stats
6x MSI 1080ti AERO /w10/ 430.39 / PL 80 / i5 /8gb
with pill ~23mh/s
Thank you very much for your work good sir, I will gladly leave donation enabled.

Will try .23 on ubuntu / 8x 2080 rig
16  Alternate cryptocurrencies / Mining (Altcoins) / Re: ccminer: Fastest MTP miner for nvidia cards on: July 01, 2019, 05:53:25 AM
.23 looking good so far
17  Alternate cryptocurrencies / Mining (Altcoins) / Re: ccminer: Fastest MTP miner for nvidia cards on: June 30, 2019, 11:37:11 AM
thanks for development.
Got 2 more crashes on 22, first one even caused 2 gpus to be "dropped" from system.
Power cycle brings em back.
https://imgur.com/Y3poYFQ
https://imgur.com/7cusMOZ

Second one I have seen for the first time.
Started running .23 just now.

My running line is

:RUN

ccminer -a mtp -o stratum+tcp://xzc.2miners.com:8080 -u XXX.XXX -p x -i 21

timeout /t 5
goto RUN

Rig is corei5/8gb



how much hashrate u got before in this config

~23 mh/s

80% tdp
18  Alternate cryptocurrencies / Mining (Altcoins) / Re: ccminer: Fastest MTP miner for nvidia cards on: June 30, 2019, 09:09:22 AM
thanks for development.
Got 2 more crashes on 22, first one even caused 2 gpus to be "dropped" from system.
Power cycle brings em back.
https://imgur.com/Y3poYFQ
https://imgur.com/7cusMOZ

Second one I have seen for the first time.
Started running .23 just now.

My running line is

:RUN

ccminer -a mtp -o stratum+tcp://xzc.2miners.com:8080 -u XXX.XXX -p x -i 21

timeout /t 5
goto RUN

Rig is corei5/8gb
19  Alternate cryptocurrencies / Mining (Altcoins) / Re: ccminer: Fastest MTP miner for nvidia cards on: June 28, 2019, 01:36:35 PM
1.1.22 is still crashing randomly for me unfortunately.

Sometimes
- miner stops completely / script loop not working because the process is still alive
- miner is flooded with stratum errors / no accepts
- miner is flooded with increasing nonce / no accepts

6x1080ti 430.39

Mining on 2miners.
Second rig is running ubuntu/t-rex and not experiencing any issues.

Thanks for your development of free ccminer
do you have a log file ? (I can probably force it crashes for the remaining issues)

Not right now, but I am happy to create/provide one.
Didnt find a native --log switch though.
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 📌[ANN][ZER]🔐ZERO - Your Transactions Are Your Business ✅ on: June 28, 2019, 01:32:02 PM
can a zero node run with just a public fqdn (hostname) or is a static ip absolutely necessary?
Pages: [1] 2 3 4 5 6 7 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!