Bitcoin Forum
June 21, 2024, 02:15:07 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Mining support / Remote access to Innosilicon T2Tz 30TH on: August 20, 2021, 05:58:48 AM
I've had these for ... years. They've done me good. However I'm currently away from my farm for a couple of months. It seems on NiceHash one of them isn't doing much.... 0 hash rate. (Edit ->) It also seems to be rebooting every few minutes.

I wanted to remote in and reboot the machine but am having some issues. I have no idea what program to use. I was reading Innosilison uses telnet instead of ssh? Telnetting into the machine yields an error. I later read the proper port is 8100... for an A4/5... figured they properly use the same settings for all machines.... connection refused. Guessing passwords with ssh has gone nowhere (user: 'admin').

It's been 25 years since I used telnet on a daily basis.... did I miss something? Or am I barking up the wrong application?

I'm ssh'ing into a Raspberry Pi on the farm's network and then attempting to get in that way.

Thanks.
2  Bitcoin / Mining support / Re: Innosilicon T2T-26T Arrived Non Operational on: August 20, 2021, 05:41:23 AM
If you are running Linux you can use the nmap command

Code:
nmap -sP 192.168.1.0/24

Determine the IP of your router. The third number may be different for you. Whatever the C octet is use in the above command instead of 1.

You will see everything on your network. If you want fewer IPs to try turn off your phones, tablets, laptops, etc. that aren't being used.
3  Alternate cryptocurrencies / Mining (Altcoins) / Altcoin ASIC Troubleshooting/Repair advice please (BK-B, Innosilicon A6) on: May 21, 2021, 01:46:20 PM
Just an FYI, my job is a bit demanding and takes me away from the farm, often for weeks. I'm nearby for a little while but depending if the thread goes for a bit, it may "die" and be "revived" only because I can't do anything for 20 days.

Software-ish at my disposal:
  • Linux
  • Remote access via SSH - Raspberry Pi (command-line), Laptop (X11 tunnel)
  • Wireshark
  • Handful of other network tools that I don't know how to use fully - nmap, iw...

Innosilicon A6:

The A6 I bought off eBay. Like many things in life, I think all is good and it sits for 6 months before I plug it in. The seller unplugged all the control cable ribbons. I'm not sure if the order matters. Looking at the front of the machine, designating the connectors as (closest-furthest, left-right): FA1-4, FB1-4, R1-8, they are connected as FA1-4 to R5-8 and FB1-4 to R1-4. When it is powered on it behaves as I would expect it to (lights, fans). However I have no idea what the IP is.

I tried both resets. I've never seen it appear on 192.168.1.254 (per manual). I don't see it appear in my DHCP range (per hope). I tried a direct connection with my laptop with a fixed 192.168.1.x address and ran a trace with Wireshark. I don't think I saw anything from the miner. I was hoping some attempt to communicate would be made but I'm not exactly sure what I'm looking for. I think everything came from my laptop.

Then I thought I'll just use a card with some firmware I'll download.... There is a card slot in the aluminum, but no reader on the PCB. The control board is G19 CON V2.

Baikal-B:

These worked fine... mostly. Then one day one died. I plug in the PSU absolutely nothing. During the last 20 days apparently 2 died. (A power outage seems to have occurred. All my panels have surge protectors.... I wonder how much of a shock it is to go from 0kw demand to 40...) I have 3 BK-Bs per Bitmain APW3++ PSU. The first machine that died months ago, the others start up in the group; that machine is completely lifeless. However with the 2 recents, the PSU cuts off after all the leds blink for a brief moment on all machines. Selectively booting them up, there is one in that group that runs.

There is another machine which worked and now never seems to connect. The leds never stop blinking... I'm going to try to reflash the OS.

Then for a handful of BK-Bs they drop and never manage to reconnect. Unlike my Bitmains these machines disappear when using nmap. So I uploaded a script to each one executed as a cronjob (Gone through a couple of iterations [comments on bottom]:
Code:
#!/bin/bash

utime=`uptime -p`
min=`echo "$utime" | awk '{print $(NF-1)}'`

if ([[ "$utime" == *","* ]] || [ $min -gt 5 ]); then
read -r hash before <<<`php /root/cgminer-api.php 127.0.0.1 summary | grep -E '(MHS 5s)|(Last)' | awk '{print int($(NF));}'`
date=`date`;

if ([[ -z $hash ]] || [[ -z $before ]]); then
echo "$date: Socket error. Terminating" >> reboot.log
sudo reboot;
fi

now=`date "+%s"`
msg='';

let "delta = $now - $before"
if [ $delta -gt 600 ]; then
msg="$date: Potential Hangup ($delta s)";
elif [ $hash -lt 25000 ]; then
msg="$date: Low hash rate ($hash)";
fi


if [[ ! -z $msg ]]; then
echo "$msg" >> reboot.log
sudo reboot;
fi
fi

# out=`ping -c 1 192.168.1.1 | grep -oF " 0% packet loss"`
# ... (Version 1)
# if [ -z "$out" ]; then

# pid=`ps -C sgminer | awk 'END{print $1}'`
# cpu=`top -p $pid -n 1 -b | awk 'END{print int($9)}'`
# ... (Version 2)
# if [ $cpu -lt 8 ]; then

If anything, I think it speeds up the problem. (I just reviewed the script again. FYI I mine LBC only)

Any ideas or help with the above would be awesome!

THANK YOU!!!!
4  Bitcoin / Mining support / Re: New build - airflow advice on: May 09, 2020, 04:07:48 AM
I am in the process of setting up a small farm in the basement of my business premises. ...

Initially I thought this should be fine however I’m wondering now is it too much? For example could it cause a vacuum type effect and over-speed the miner fans?  ....

Is it possible you can have too much airflow and the miners will run too cold?

Too cold? No. Best time of year here in North Dakota is winter. I leave the window open in my garage for that nice -10°F air.

"Vacuum-type effect": I'm not an HVAC expert however contrasted to my setup yours is superior. I would think if this is a factor that is produced (although if I read correctly you have fans on both sides now) I'm unsure if it would have a significant impact on the miners. However I believe your thoughts are not correct regarding the consequences. The fans on the machines have an easier time to spin. This means less work for the same desired effect per machine the control boards are seeking... in other words, at the miner level less electricity. The speed of the fans is a function of the temps. So if you're getting good flow from the room fans you'll probably see the miner fan RPM decrease.
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: LBRY.IO - DICUSSION THREAD on: January 15, 2020, 04:37:31 AM
Maybe the person having 2/3 of the network hash rate can read this and stop rotating your machines around and just spread them proportionally among the pools.
6  Alternate cryptocurrencies / Mining (Altcoins) / Re: Any advice on how to run a successful mining operation? on: December 31, 2019, 08:40:23 AM
There's your mistake. Learn first, spend second.

There would never be any spending. Smiley But seriously, I've been doing this for almost two years. I've learned a lot and am still learning. I would be learning more except I've split myself in 6 directions. At this point I probably can be an electrician.... I basically have one do a walkthrough after I've done all the work. Get the stamp of approval. That's about it.

... all the profits and glory that we were seeing in the past was because of accelerating market growth for a good period of time ...
it is never going to be that profitable for all the hard work and time you are putting ...
... mine the top 50 coins with the hardware that is a bit profitable

I have given this much thought already. I'm in agreement with many of your points. But I put the effort in... I wish I chose another project first, but I chose this. I'm committed until the end. Amazingly.... after doing some miner switching... my numbers aren't too bad.

I would get rid of your asics that are older and outdated and either replace it with newer versions or switch over to gpu mining.

gpu mining is profitable at your electric rate.  ...

You do have a lot of miners so you should put some of them at a colo facility. They charge around 8 cents watt rate. You might need to wait 6 months to a year until profitability returns

I don't think I'm getting rid of any of these until the next pop. Better to run all my miners than colo. If they are profitable at 8 cents then one cent less is that much more in my pocket. I really need to sit down and look at hypothetical tax situations at end of year instead of am I getting positive cashflow today. If I run all my miners and can still turn 10%-ish a month... if my bill is $4000 vs $1200 I can sell $4k of crypto and pocket $400 of crypto vs taking out $1200 from my paycheck to keep $1200 of crypto because I feel keeping $120 of BTC "isn't worth the effort."

Financial peeps always talk about plans. I have pieces thrown together into a heap. Nothing comprehensive or cohesive.....

Happy New Year!!! (Yes, I'm early but that's okay.)
7  Alternate cryptocurrencies / Mining (Altcoins) / Any advice on how to run a successful mining operation? on: December 30, 2019, 11:28:36 AM
I guess that translates to how do you find the good coins.... or timing what you're mining? I have 7 cent power. Not the best, not the worst.

I've spent IDK how many literal days, probably weeks, in 2019 on this project.... and lots of money. I just saw a video from VoskCoin on YouTube a few days ago. It was exciting and depressing (and filmed in August). He was grossing $60/day and making $30 a day with a handful of machines. I can't remember but the numbers are close enough. Maybe the only one doing well was his GRIN machine.

I have 18 L3+, 13 S9i, 12 BK-B, 12 U6, 6 S11 (blake2b), 1 BK-N240.

I can only run about 130 amps worth at any time.

Should I go to GPU? CPU?

Should I be mining LTC because of low difficulty? I've been wanting to mine LBC for months and months and haven't. It wasn't profitable at the time. Ironically it is the reason I'm positive cashflow at the moment. Barely... as usual. My daily bill is probably around $40 with maybe $43 in earnings.

Is the better plan to mine LTC and wait? It would be a loss for now.... but also fairly easy to mine coins. Mine @ loss for the accumulation and wait for pump? ... Rinse and  repeat?

Should I maintain blockchains for all coins of a given algorithm and auto-switch my miners under condition x, y, or z? And how would one maintain the chains? Seems like I can only get about 3  going simultaneously.

My goal was to mine and finally have enough to pay for electricity from the earnings. StrongU failed to deliver. That combined with using a particular website that totes a somewhat comprehensive list of ASIC profitability.... is completely wrong vs calculators.... Yup, still paying out of my paycheck to pay the bill.  Undecided

Any general advice? If VoskCoin can do that with 12 cent power... I'm missing something.

Thanks.
8  Alternate cryptocurrencies / Mining (Altcoins) / Re: StrongU STU-U6 - X11 ASIC - Worst miner and company ever? on: December 30, 2019, 10:50:52 AM
I have 12.  Huh Shocked Huh
9  Bitcoin / Mining support / Re: How to Kill mining process on Antminers? on: May 15, 2018, 03:17:20 AM
I'm not sure if it is cron. In the inittab file it specifies respawn on several lines. If this is once I think it might solve the problem but I can't figure out how to use OpenWRT's version of vi. Either I'm dense or the commands aren't the same from Google searches.

(I've never used vi too... could be a contributing factor Smiley )
10  Bitcoin / Mining support / How to Kill mining process on Antminers? on: May 14, 2018, 12:08:49 AM
I have a few miners. I haven't tried on my S9 yet but looks like the L3+s use 'screen' to launch 'cgminer'. I tried killing the cgminer process nicely (-s TERM), forcefully (-9), via ctrl+c (or ...z ... x; can't remember) after reattaching the screen. Every time it restarts. I tried chasing down this "sleep 20" process and killing the new spawn... I tried killing 'monitorcg'....

Every time all the processes killed restart (except the sleep, but I might be too slow and it finished). It didn't look there was a crontab file in '/var/spool/cron/root'.

I just did the poweroff command as a test but the idea was to shutdown mining if I wanted without getting a switched PDU. (SSH via Tor hidden service to Pi; SSH from Pi to miner, etc.) This leaves me the option of turning mining back on remotely.

Curious if anyone has been successful with this. Thx
11  Alternate cryptocurrencies / Altcoin Discussion / Re: HashGraph: Mike Maloney says it is great technology on: March 31, 2018, 04:31:28 AM
As far as I know HashGraph is a privately owned technology. I think I read somewhere an open source version may be in the works.

Iota also is working on a similar technology. It is called the Tangle. Might want to give them a look.
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [XMV] MoneroV - Fork 1:10 of Monero - Finite coin supply - Private on: February 28, 2018, 10:18:14 PM
Quote
“We believe Monero’s infinite coin supply was a mistake and is a tax in the form of inflation for all XMR holders. This is a fundamental flaw that MoneroV fixes by putting a cap on the total MoneroV coins that can be created.”

Quote
Afterwards, the inflation of both coins is exactly the same percentage wise until XMV hits 256 Million (XMR would be at this point 25.6 Million). After that point, MoneroV will stop inflating as it hit the max supply while Monero will keep inflating indefinitely.

I don't understand quotes like these.

Paid developers vs. volunteers. Fixing holes in protocols .... I understand these things. I'm not up to speed with the faults of Monero. If MoneroV can deliver on these two things thumbs up. But the infinite inflationary supply of Monero makes me chuckle a little. Really when any crypto says this. Inflation is the result of a widening gap between two funtions: the function of currency creation over time, the function of the creation of goods and services over time.

The function of Monero creation is logarithmic-like in nature.... if you look at a log function you wouldn't think the limit of such of function is infinity but it is. The function of goods and services creation should be somewhat correlated to the function representing human population probably factoring in certain technological advances.... the population function will probably be a sigmoidal function especially when we start to approach the carrying capacity of the planet adjusted for technological advances. But then there is the function of the goods and services that can be produced once we reach certain technological levels.... so more than likely this function is also infinite. Not to forget as people come out of poverty they will create a higher demand on goods and services.

The only way I personally see any inflationary results is if we're stuck on this planet and limited to its carrying capacity ..... and the passage of a long long long very very long time. Although I said log-like in nature... surely the beginning is, the final function is linear with a small slope. So we're trying to relate the exponential nature of inflation of fiat currencies to a linear function which is Monero's. That's not even apples and oranges. I don't see the function of Monero supply ever coming close to the function of goods and services....ever.
13  Bitcoin / Mining speculation / Re: Can you build your own machine using same processors as S9? on: January 01, 2018, 08:28:28 AM
I'm kinda confused by the responses in the thread except for the first. I've been looking for the pinout info of the BM1387 chip for hours... buying the chips themselves does not seem to be a problem (unless every single supplier is selling fakes). I would think the short answer to the OP is yes.... you just need the pinout info and some electrical engineering knowledge.
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!