Bitcoin Forum
June 16, 2024, 07:25:39 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 [689] 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 »
  Print  
Author Topic: [ANN] Spondoolies-Tech - carrier grade, data center ready mining rigs  (Read 1260039 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
pinhead666
Sr. Member
****
Offline Offline

Activity: 265
Merit: 250



View Profile
January 08, 2016, 04:01:36 AM
 #13761

SP31 likes cold. It's hashing at it's best hashrate ever, now when temperature here is -30C. It was little colder last night and I had to unplug and restart one psu  Angry.
mavericklm
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


View Profile
January 08, 2016, 04:03:35 AM
 #13762

same for all spondolies miners! got sp30 and sp20 and they love the cold Grin

even better after reapplying the thermal paste!
the original is too bad and too old!
bomberb17
Hero Member
*****
Offline Offline

Activity: 773
Merit: 528



View Profile
January 10, 2016, 05:09:15 PM
 #13763

Because I have my SP30 in a small room where the temperature rises above 40oC during daytime, I've made the following scripts to better schedule it to run only during nighttime:

SSH to SP30, run crontab -e and add these lines
Code:
55 15 * * * /etc/./start_mining.sh >> /etc/voltage.log
2 6 * * * /etc/./stop_mining.sh >> /etc/voltage.log
15,45 * * * *  /etc/throttle.sh

vi /etc/start_mining.sh
#!/bin/sh

Code:
echo
date
/usr/local/bin/change_voltage 630
echo "630" > /etc/voltage_flag.txt
echo

vi /etc/stop_mining.sh
Code:
#!/bin/sh

echo
date
/usr/local/bin/change_voltage 0
echo

and this script for throttling the miner according to ambient temperature, and stop if if it exceeds 40oC
vi  /etc/throttle.sh
Code:
#!/bin/sh

#echo
#date
#/usr/local/bin/change_voltage 620
#echo

jsonValue() {
KEY=$1
num=$2
awk -F"[,:}]" '{for(i=1;i<=NF;i++){if($i~/'$KEY'\042/){print $(i+1)}}}' | tr -d '"' | sed -n ${num}p
}


json=`curl -u admin:admin http://127.0.0.1/monitor.php`
tempfront=`echo $json | jsonValue Temperaturefront`
#echo $tempfront

#tempfront=33
read flag < /etc/voltage_flag.txt

if [ -z "$tempfront" ]; then

        exit 1
fi

if  [ "$tempfront" -gt 37 -a "$tempfront" -le 40 -a "$flag" -ne 620 ]; then
        echo "620" > /etc/voltage_flag.txt
        echo "Temp on `date` is $tempfront, setting voltage to 620" >> /etc/throttle.log
        /usr/local/bin/change_voltage 620
fi

if  [ "$tempfront" -gt 40 ]; then
        echo "0" > /etc/voltage_flag.txt
        echo "Temp on `date` is $tempfront, stopping miner!" >> /etc/throttle.log
        /usr/local/bin/change_voltage 0
fi

if  [ "$tempfront" -lt 34 -a "$flag" -ne 630 ]; then
        echo "630" > /etc/voltage_flag.txt
        echo "Temp on `date` is $tempfront, setting voltage to 630" >> /etc/throttle.log
        /usr/local/bin/change_voltage 630
fi

The only thing I don't know yet is how to get only one of the 2 boards working (either top or bottom).
Any ideas?
dogie
Legendary
*
Offline Offline

Activity: 1666
Merit: 1183


dogiecoin.com


View Profile WWW
January 10, 2016, 05:33:43 PM
 #13764

The only thing I don't know yet is how to get only one of the 2 boards working (either top or bottom).
Any ideas?

Disable all the loops on that board? Don't know how that's coded though.

el_rlee
Legendary
*
Offline Offline

Activity: 1600
Merit: 1014



View Profile
January 10, 2016, 06:06:21 PM
 #13765

Sorry for asking should this have been answered before... Is there any actual proof that the chips for the SP50 are finished?
If so why they don't just sell chips if in need of money?

I just can't understand the SP management decisions since they partnered with the slimy rip-off company that Genesis Mining is.

@dogie what's the status on the sales commission they owe you?
dogie
Legendary
*
Offline Offline

Activity: 1666
Merit: 1183


dogiecoin.com


View Profile WWW
January 10, 2016, 06:21:31 PM
 #13766

Sorry for asking should this have been answered before... Is there any actual proof that the chips for the SP50 are finished?
If so why they don't just sell chips if in need of money? I just can't understand the SP management decisions since they partnered with the slimy rip-off company that Genesis Mining is.
No.


@dogie what's the status on the sales commission they owe you?
Unpaid, negotiations with their lawyers were a joke, update soon.

sabercatt
Member
**
Offline Offline

Activity: 91
Merit: 10


View Profile
January 11, 2016, 02:05:01 AM
 #13767

I had two guys I know each offer over a million dollars to purchase or invest, and they responded that they weren't interested but would keep their info for the future.
dogie
Legendary
*
Offline Offline

Activity: 1666
Merit: 1183


dogiecoin.com


View Profile WWW
January 11, 2016, 04:07:28 AM
 #13768

I had two guys I know each offer over a million dollars to purchase or invest, and they responded that they weren't interested but would keep their info for the future.

Purchase I can understand, BTCS have theoretical dibs on everything so its not their [pretending Spondoolies is separate] decision. But saying no to investment, the fuck?

bomberb17
Hero Member
*****
Offline Offline

Activity: 773
Merit: 528



View Profile
January 11, 2016, 06:21:06 PM
 #13769

The only thing I don't know yet is how to get only one of the 2 boards working (either top or bottom).
Any ideas?

Disable all the loops on that board? Don't know how that's coded though.

Yes that would be a solution.. Anyone who might know how to extract the code to disable/enable ASICS from its Web page?
mavericklm
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


View Profile
January 14, 2016, 09:23:11 PM
 #13770

Hello, hello!

Friend of mine is saying that he's got problems with his sp31.

Miner has green leds on both psu, normal activity on the network leds, and the front 2 leds are like this: green totally off and orange is blinking 3 times!

He has tried myminer.io but no miner in there! ip scanner but no ip of the miner! So he can't access his miner Sad

Miner was ok few weeks back! sadly was left unattended...

Please advise!

Thank you!
dogie
Legendary
*
Offline Offline

Activity: 1666
Merit: 1183


dogiecoin.com


View Profile WWW
January 14, 2016, 09:32:03 PM
 #13771

Please advise!

Is it restarting every 2-3 minutes (you'd hear it)? Any luck with the recovery SD card?

mavericklm
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


View Profile
January 14, 2016, 09:55:58 PM
 #13772

He is saying that it kind of does go full fan speed every few minutes.

Gave him this link: http://www.spondoolies-tech.com/blogs/technical-blog/13098521-sp10-sp2x-sp3x-recovery-sd-card-boot-sd-card-creation-instructions

i hope he manages Grin
dogie
Legendary
*
Offline Offline

Activity: 1666
Merit: 1183


dogiecoin.com


View Profile WWW
January 14, 2016, 10:28:30 PM
 #13773

He is saying that it kind of does go full fan speed every few minutes.

Gave him this link: http://www.spondoolies-tech.com/blogs/technical-blog/13098521-sp10-sp2x-sp3x-recovery-sd-card-boot-sd-card-creation-instructions

i hope he manages Grin

Should be okay then, its sitting there idle with messed up network settings. The SD card should fix it.

dogie
Legendary
*
Offline Offline

Activity: 1666
Merit: 1183


dogiecoin.com


View Profile WWW
January 15, 2016, 07:06:31 PM
 #13774

My take on the latest press release:

  • They generated ~1800btc last calendar year = very roughly $700k
  • They have approximately $400k of hardware @0.2$/GH
  • This hardware is generating $3500 a day at a cost of $1300 a day
  • They're paying an investment banking firm to help them uplist their broke ass company to a major exchange (xD)
  • They expect to mine just 600 bitcoins in 16Q1
  • They can no longer claim 1700% growth from nearly nothing to > nearly nothing

Quote
ARLINGTON, VA--(Marketwired - Jan 12, 2016) - BTCS Inc. (OTCQB: BTCS) ("BTCS" or the "Company"), a blockchain technology focused company which secures the blockchain through its transaction verification services business, generated 1,797 bitcoins for the year ended December 31, 2015 from its transaction verification services, an increase of 3,389% over total bitcoins earned in 2014.

"While we are pleased to report significant percentage growth in bitcoins earned during 2015, the real story of our success over the past year is the strong foundation we built for our business moving forward," stated Charles Allen, CEO of BTCS. "Our refined operational focus on blockchain technologies has led to a rapid build-out of capacity at our North Carolina facility, and with our definitive merger with Spondoolies-Tech Ltd. now in place, we are well-positioned for continued growth in 2016."

The Company's recently completed round of financing has enabled it to grow its transaction verification business to approximately 1800 TH/s, an increase of more than 100% compared to the 891 TH/s in place through most of 2015. Operating at the increased hash rate the Company will use approximately 0.95 megawatts ("mw") of its 3mw capacity.

Allen continued, "With the transaction verification servers we are running today, we believe we are on track to generate over 600 bitcoins in the first quarter of 2016. The remaining unused capacity we have in place provides ample room for planned growth with minimal added expense as we pursue a substantial financing with the goal of uplisting to a major exchange."

The Company engaged Chardan Capital Markets, LLC, a privately held investment banking firm with a focus on small-cap and mid-cap markets, to advise the Company on potential transactions that could lead to an up listing on a major exchange.

The additional capital expected to be raised from a future offering will enable BTCS to further capitalize on the significant opportunity within the growing blockchain technology space. Recently heralded in a cover story in The Economist for its potential to "transform how the economy works," blockchain technologies are forecasted to impact nearly every industry that relies on safe and secure transactions.

*disclaimers removed*

geko
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
January 17, 2016, 09:24:51 PM
 #13775

Hi all,
  I have a problem with my SP20...
One board seems faulty, in the syslog I can read:

Jan 17 20:22:14 miner local1.warn minergate[637]: DC2DC Init 0 done OK
Jan 17 20:22:14 miner local1.warn minergate[637]: DC2DC Init 1 done OK
Jan 17 20:22:14 miner local1.warn minergate[637]: DC2DC Init 2 done OK
Jan 17 20:22:14 miner local1.warn minergate[637]: DC2DC Init 3 done OK
Jan 17 20:22:14 miner local1.warn minergate[637]: DC2DC Init 4 done OK
Jan 17 20:22:14 miner local1.warn minergate[637]: DC2DC Init 5 done OK
Jan 17 20:22:14 miner local1.warn minergate[637]: DC2DC Init 6 done OK
Jan 17 20:22:14 miner local1.warn minergate[637]: DC2DC Init 7 done OK
Jan 17 20:22:14 miner local1.warn minergate[637]: init_pwm
Jan 17 20:22:14 miner local1.warn minergate[637]: ADDR_SQUID_LOOP_BYPASS = ffffffe
Jan 17 20:22:14 miner local1.warn minergate[637]: Loop BAD DATA (0) on 0
Jan 17 20:22:14 miner local1.warn minergate[637]: loop 0 disabled (code 5)
Jan 17 20:22:14 miner local1.warn minergate[637]: Critical: Loop missing in discovery 0 (code 5)
Jan 17 20:22:14 miner local1.warn minergate[637]: Disabling DC2DC 0 because no ASIC A X
Jan 17 20:22:15 miner local1.warn minergate[637]: Disabling DC2DC 1 because no ASIC A X
Jan 17 20:22:15 miner local1.warn minergate[637]: ADDR_SQUID_LOOP_BYPASS = ffffffd
Jan 17 20:22:15 miner local1.warn minergate[637]: Loop BAD DATA (0) on 1
Jan 17 20:22:15 miner local1.warn minergate[637]: loop 1 disabled (code 5)
Jan 17 20:22:15 miner local1.warn minergate[637]: Critical: Loop missing in discovery 1 (code 5)
Jan 17 20:22:15 miner local1.warn minergate[637]: Disabling DC2DC 2 because no ASIC A X
Jan 17 20:22:15 miner local1.warn minergate[637]: Disabling DC2DC 3 because no ASIC A X
Jan 17 20:22:15 miner local1.warn minergate[637]: ADDR_SQUID_LOOP_BYPASS = ffffffb
Jan 17 20:22:15 miner local1.warn minergate[637]: All passed 5
Jan 17 20:22:15 miner local1.warn minergate[637]: loop 2 enabled
Jan 17 20:22:15 miner local1.warn minergate[637]: ADDR_SQUID_LOOP_BYPASS = ffffff7
Jan 17 20:22:15 miner local1.warn minergate[637]: All passed 5
Jan 17 20:22:15 miner local1.warn minergate[637]: loop 3 enabled
Jan 17 20:22:15 miner local1.warn minergate[637]: ADDR_SQUID_LOOP_BYPASS = ffffff3
Jan 17 20:22:15 miner local1.warn minergate[637]: Found 2 good loops
Jan 17 20:22:15 miner local1.warn minergate[637]: enable_good_loops_ok done 1965
Jan 17 20:22:15 miner local1.warn minergate[637]: GOT VERSION: 0x46
Jan 17 20:22:15 miner local1.warn minergate[637]: ASICS in loop 0: 0
Jan 17 20:22:15 miner local1.warn minergate[637]: ASICS in loop 1: 0
Jan 17 20:22:15 miner local1.warn minergate[637]:  ASICS in loop 2: 2
Jan 17 20:22:15 miner local1.warn minergate[637]:  ASICS in loop 3: 2


I placed the good asic board in the other slot and extracted the faulty one and get:

Jan 16 16:05:50 miner local1.warn minergate[696]: LOST BOTTOM BOARD!
Jan 16 16:05:50 miner local1.warn minergate[696]: TAKE ONE BOARD 0 PRESENT:1
Jan 16 16:05:50 miner local1.warn minergate[696]: TAKE ONE BOARD 1 PRESENT:0
Jan 16 16:05:50 miner local1.warn minergate[696]: TAKE TWO BOARD 0 PRESENT:1
Jan 16 16:05:50 miner local1.warn minergate[696]: TAKE TWO BOARD 1 PRESENT:0
Jan 16 16:05:50 miner local1.warn minergate[696]: DC2DC stop all
Jan 16 16:05:50 miner daemon.info init: starting pid 787, tty '/dev/ttyO0': '/sbin/getty -L ttyO0 115200 vt100 '
Jan 16 16:05:51 miner local1.warn minergate[696]: DC2DC Init 0 done OK
Jan 16 16:05:51 miner local1.warn minergate[696]: DC2DC Init 1 done OK
Jan 16 16:05:51 miner local1.warn minergate[696]: DC2DC Init 2 done OK
Jan 16 16:05:51 miner local1.warn minergate[696]: DC2DC Init 3 done OK
Jan 16 16:05:51 miner local1.warn minergate[696]: i2c write 0x71 = 0x1 error2
Jan 16 16:05:51 miner local1.warn minergate[696]: i2c write byte 0x18 0x2 = 0x12 error6
Jan 16 16:05:51 miner local1.warn minergate[696]: i2c write 0x71 = 0x0 error2
Jan 16 16:05:51 miner local1.warn minergate[696]: i2c write 0x71 = 0x2 error2
Jan 16 16:05:51 miner local1.warn minergate[696]: i2c write byte 0x18 0x2 = 0x12 error6
Jan 16 16:05:51 miner local1.warn minergate[696]: i2c write 0x71 = 0x0 error2
Jan 16 16:05:51 miner local1.warn minergate[696]: i2c write 0x71 = 0x4 error2
Jan 16 16:05:51 miner local1.warn minergate[696]: i2c write byte 0x18 0x2 = 0x12 error6
Jan 16 16:05:51 miner local1.warn minergate[696]: i2c write 0x71 = 0x0 error2
Jan 16 16:05:51 miner local1.warn minergate[696]: i2c write 0x71 = 0x8 error2
Jan 16 16:05:51 miner local1.warn minergate[696]: i2c write byte 0x18 0x2 = 0x12 error6
Jan 16 16:05:51 miner local1.warn minergate[696]: i2c write 0x71 = 0x0 error2



So the controller is ok and the faulty board seems to send information about DC2DC converters.
Do you think that all ASIC in the faulty board are fried?

I have an oscilloscope,  what can I measure to be sure that the ASICs are really bad?

Thanks!
Bye
dogie
Legendary
*
Offline Offline

Activity: 1666
Merit: 1183


dogiecoin.com


View Profile WWW
January 17, 2016, 11:21:10 PM
 #13776

I don't believe you'll be able to rescue a dead board, you're best removing / unplugging / disabling it and moving on.

bitcoinbarron
Member
**
Offline Offline

Activity: 68
Merit: 10


View Profile
January 18, 2016, 12:06:15 AM
 #13777

Hi Geko,

Welcome to the forum! I would love to help with your SP20 but I have never owned one lol, I am sure a helpful individual will be along soon enough tho!

With regards to the general Spondoolies-tech situation, I am personally seeing them as past their prime and no longer players.
I was genuinely in the market for 5+ SP50 units but after emailing numerous times with not even a single response I have personally given up.

I have now gone to buying S7's and having to rack mount them on 4u rack shelves (3 to a shelf with the PSU mounted overhead on 3M VHB tape)

I think its sad as the SP3x series were belters! (especially at low temperatures like we have now at 3C inlet temp) but the remaining SP31's and SP35's I have are slowly being phased out as the S7's use far less power. As I am limited to 3x 110a feeds at 240v I can either have 1 SP31 @4.9th or 2x S7 @9.4th
You do the math!

I would love to know whats really going on inside S-T but I fear this genuinely is the end.

regs 
geko
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
January 18, 2016, 09:55:14 PM
 #13778

I don't believe you'll be able to rescue a dead board, you're best removing / unplugging / disabling it and moving on.

You're right but I would like to know if the board is really dead, so I asked.

Bye
dogie
Legendary
*
Offline Offline

Activity: 1666
Merit: 1183


dogiecoin.com


View Profile WWW
January 18, 2016, 10:00:54 PM
 #13779

I don't believe you'll be able to rescue a dead board, you're best removing / unplugging / disabling it and moving on.

You're right but I would like to know if the board is really dead, so I asked.

Bye

Looks pretty dead to me

Wallbot
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
January 19, 2016, 09:02:44 PM
 #13780

My take on the latest press release:

  • They generated ~1800btc last calendar year = very roughly $700k
  • They have approximately $400k of hardware @0.2$/GH
  • This hardware is generating $3500 a day at a cost of $1300 a day
  • They're paying an investment banking firm to help them uplist their broke ass company to a major exchange (xD)
  • They expect to mine just 600 bitcoins in 16Q1
  • They can no longer claim 1700% growth from nearly nothing to > nearly nothing

Quote
ARLINGTON, VA--(Marketwired - Jan 12, 2016) - BTCS Inc. (OTCQB: BTCS) ("BTCS" or the "Company"), a blockchain technology focused company which secures the blockchain through its transaction verification services business, generated 1,797 bitcoins for the year ended December 31, 2015 from its transaction verification services, an increase of 3,389% over total bitcoins earned in 2014.

"While we are pleased to report significant percentage growth in bitcoins earned during 2015, the real story of our success over the past year is the strong foundation we built for our business moving forward," stated Charles Allen, CEO of BTCS. "Our refined operational focus on blockchain technologies has led to a rapid build-out of capacity at our North Carolina facility, and with our definitive merger with Spondoolies-Tech Ltd. now in place, we are well-positioned for continued growth in 2016."

The Company's recently completed round of financing has enabled it to grow its transaction verification business to approximately 1800 TH/s, an increase of more than 100% compared to the 891 TH/s in place through most of 2015. Operating at the increased hash rate the Company will use approximately 0.95 megawatts ("mw") of its 3mw capacity.

Allen continued, "With the transaction verification servers we are running today, we believe we are on track to generate over 600 bitcoins in the first quarter of 2016. The remaining unused capacity we have in place provides ample room for planned growth with minimal added expense as we pursue a substantial financing with the goal of uplisting to a major exchange."

The Company engaged Chardan Capital Markets, LLC, a privately held investment banking firm with a focus on small-cap and mid-cap markets, to advise the Company on potential transactions that could lead to an up listing on a major exchange.

The additional capital expected to be raised from a future offering will enable BTCS to further capitalize on the significant opportunity within the growing blockchain technology space. Recently heralded in a cover story in The Economist for its potential to "transform how the economy works," blockchain technologies are forecasted to impact nearly every industry that relies on safe and secure transactions.

*disclaimers removed*


 You missed something Doggie  " transaction verification business to approximately 1800 TH/s, an increase of more than 100% compared to the 891 TH/s in place through most of 2015 "

  Roll Eyes
Pages: « 1 ... 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 [689] 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!