Search content
Sort by

Showing 20 of 134 results by notsure85
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Firo (FIRO) - Implementing ZKP privacy without trusted setup
by
notsure85
on 16/02/2021, 19:02:23 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Firo (FIRO) - Implementing ZKP privacy without trusted setup
by
notsure85
on 29/01/2021, 12:42:38 UTC
send a transaction from core wallet, it defaulted to private balance.
Now it says transaction is offline (watch only?), cat 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?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] STRAKS - A POW/Masternode Cryptocurrency focused on e-commerce utility
by
notsure85
on 02/03/2020, 21:34:44 UTC
He´s dead Jim
Post
Topic
Board Mining (Altcoins)
Re: ccminer 1.2.0/sgminer 0.1.3 for MTP: Fastest MTP miner for nvidia cards
by
notsure85
on 08/01/2020, 21:40:37 UTC
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
Post
Topic
Board Announcements (Altcoins)
Re: 📌[ANN][ZER]🔐ZERO - Your Transactions Are Your Business ✅
by
notsure85
on 06/11/2019, 14:36:03 UTC
Post
Topic
Board Mining (Altcoins)
Re: GMiner v1.65 Equihash(BEAM, BTG, YCASH)/CuckooCycle(AE, SWAP, GRIN)/Eaglesong
by
notsure85
on 19/09/2019, 05:43:53 UTC
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.
Post
Topic
Board Mining (Altcoins)
Re: GMiner v1.59 Equihash(BEAM, VDS, BTG, YCASH)/CuckooCycle(AE, SWAP, GRIN)
by
notsure85
on 21/08/2019, 12:40:33 UTC
Mine are MSI 1080ti aero

core + 150
mem +500

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

1.59 --oc1 enabled
1080ti
165w
~55 Sols
Post
Topic
Board Mining (Altcoins)
Topic OP
Linux Nvidia Monitoring Script for checkmk nagios
by
notsure85
on 08/08/2019, 09:10:13 UTC
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

Post
Topic
Board Mining (Altcoins)
Re: ccminer: Fastest MTP miner for nvidia cards
by
notsure85
on 09/07/2019, 08:35:08 UTC
much appreciated
Post
Topic
Board Mining (Altcoins)
Re: ccminer: Fastest MTP miner for nvidia cards
by
notsure85
on 09/07/2019, 06:04:37 UTC
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.
Post
Topic
Board Mining (Altcoins)
Re: ccminer: Fastest MTP miner for nvidia cards
by
notsure85
on 05/07/2019, 09:43:37 UTC
very well, I disabled Windows Error Reporting and UI.

HKEY_CURRENT_USER\Software\Microsoft\Windows\Windows Error Reporting

Thanks
Post
Topic
Board Mining (Altcoins)
Re: ccminer: Fastest MTP miner for nvidia cards
by
notsure85
on 05/07/2019, 05:23:01 UTC
it is on a script loop.
Doesnt work though, process is stuck until you click away the message.

Mining on 2miners eu server
Post
Topic
Board Mining (Altcoins)
Re: ccminer: Fastest MTP miner for nvidia cards
by
notsure85
on 04/07/2019, 14:54:00 UTC
sadly have to report another crash with version .23

https://i.imgur.com/UyUGC1a.png
Post
Topic
Board Mining (Altcoins)
Re: ccminer: Fastest MTP miner for nvidia cards
by
notsure85
on 01/07/2019, 13:43:28 UTC
.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
Post
Topic
Board Mining (Altcoins)
Re: ccminer: Fastest MTP miner for nvidia cards
by
notsure85
on 01/07/2019, 05:53:25 UTC
.23 looking good so far
Post
Topic
Board Mining (Altcoins)
Re: ccminer: Fastest MTP miner for nvidia cards
by
notsure85
on 30/06/2019, 11:37:11 UTC
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
Post
Topic
Board Mining (Altcoins)
Re: ccminer: Fastest MTP miner for nvidia cards
by
notsure85
on 30/06/2019, 09:09:22 UTC
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
Post
Topic
Board Mining (Altcoins)
Re: ccminer: Fastest MTP miner for nvidia cards
by
notsure85
on 28/06/2019, 13:36:35 UTC
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.
Post
Topic
Board Announcements (Altcoins)
Re: 📌[ANN][ZER]🔐ZERO - Your Transactions Are Your Business ✅
by
notsure85
on 28/06/2019, 13:32:02 UTC
can a zero node run with just a public fqdn (hostname) or is a static ip absolutely necessary?