Bitcoin Forum
May 26, 2024, 01:18:59 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 »
101  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] LuckyCoin LKY | Lucky Blocks | Fast | Fun | Fair on: May 28, 2013, 10:27:32 PM
I have a TEMPORARY luckycoin pool setup here: http://smalltimeminer.com Closed

Proportional payout, full block reward including fees. 1% pool fee.

Please be sure to have a backup pool and a payout address set should it close unexpectedly.
102  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Elacoin | Released | Fair Elastic Scrypt Mining | No Premine on: May 14, 2013, 03:45:35 PM
do what you want.

But still you just fucked milksakes coin release... shame on you
Not my fault he's incompetent and can't figure out how to release his own client. Nor is it my fault that he decided to premine his own coin.


Hmm, after you dropped the code and when I joined the network there was only ~60 blocks so...
103  Alternate cryptocurrencies / Altcoin Discussion / Re: WTB YAC 30ltc/1000yac i'll buy 10000YAC on: May 11, 2013, 12:06:25 PM
Great trade with kelvinhsu for 3K yac for ltc. Thanks!
104  Alternate cryptocurrencies / Altcoin Discussion / Re: LTC/FTC exchange via Google Docs [Bid 28 LTC | Ask 26 LTC] on: April 29, 2013, 10:45:54 AM
Please remove my sell order of 10k @ 28ltc I'm currently out of coins. Thanks
105  Alternate cryptocurrencies / Altcoin Discussion / Re: [WTB] FC for 20LTC/1000FC, 1000-10000 coins on: April 25, 2013, 05:33:46 PM
Great trading with rafsoaken for 10k fc quick and easy. THANKS!
106  Alternate cryptocurrencies / Altcoin Discussion / Re: LTC/FC exchange via Google Docs [Bid 20 LTC | Ask 20 LTC] on: April 25, 2013, 05:06:16 PM
have a nice traded with  Bigal   10K FC. thanks. you are a good seller.

Smooth and painless transaction with dennisbs. Thanks!
107  Alternate cryptocurrencies / Altcoin Discussion / Re: LTC/FC exchange via Google Docs [Bid 25 LTC | Ask 30 LTC] on: April 24, 2013, 01:14:42 PM
WTS 10000 FC @ 28 LTC per 1000
108  Bitcoin / Mining software (miners) / Re: CGMINER GPU FPGA overc monit fanspd RPC stratum linux/windws/osx/mip/r-pi 2.10.4 on: January 07, 2013, 12:45:14 PM
Onto a new issue. I want to beable to control remotely what pool is selected. Since I have 9 rigs I want to do this programatically. I am very knowledable of VB and linux, but am new to JSON/RPC. I would like to be able to send such a command via the network interface using RPC via VBA.net. From looking at the cgminer source RPC/JSON commands are accepted through the use of port 4028. What would be the simpliest way to send an RPC packet from VBA.net to switch to pool 2 and viceversa switch to pool 0.

Any help would be appreciated. I have exhausted the third party addons for JSON serialization and RPC protocal and have not come accross a viable solution.

Thanks,
Mark  
 

Here's how to do it in C# (there are probably other ways as well)

Code:
private void sendCommand(string command)
        {
            try
            {
                System.Net.Sockets.TcpClient clientSocket = new System.Net.Sockets.TcpClient();
                clientSocket.Connect("192.168.10.2", 4028);
                NetworkStream serverStream = clientSocket.GetStream();
                byte[] outStream = System.Text.Encoding.ASCII.GetBytes(command);
                serverStream.Write(outStream, 0, outStream.Length);
                serverStream.Flush();

                byte[] inStream = new byte[65536];
                serverStream.Read(inStream, 0, (int)clientSocket.ReceiveBufferSize);
                string returnData = System.Text.Encoding.ASCII.GetString(inStream);
                displayMessage(returnData);
                clientSocket.Close();
            }
            catch (Exception exc)
            {
            }
        }

and in VB.net
Code:
Private Sub sendCommand(command As String)
Try
Dim clientSocket As New System.Net.Sockets.TcpClient()
clientSocket.Connect("192.168.10.2", 4028)
Dim serverStream As NetworkStream = clientSocket.GetStream()
Dim outStream As Byte() = System.Text.Encoding.ASCII.GetBytes(command)
serverStream.Write(outStream, 0, outStream.Length)
serverStream.Flush()

Dim inStream As Byte() = New Byte(65536) {}
serverStream.Read(inStream, 0, CInt(clientSocket.ReceiveBufferSize))
Dim returnData As String = System.Text.Encoding.ASCII.GetString(inStream)
displayMessage(returnData)
clientSocket.Close()
Catch exc As Exception
End Try
End Sub

Here's a quick little gui exe in the bin folder and the source to send some commands either simple text or json formatted no need for any added library.
Cgminer_RPC

109  Other / CPU/GPU Bitcoin mining hardware / Re: Raspberry Pi alternatives that can run multiple BFL singles, ASICs ? on: January 06, 2013, 03:26:24 AM
Well it finally came yesterday after a couple of e-mails and a couple of phone calls with fedex apparently the description wasn't good enough on the shipping papers and it was on some kind of FCC hold in customs and I needed to fill out some form which I didn't have a clue of some of the info needed I just told the guy on the phone it was a mini LED controller and he said no problem and released it right away.

I haven't messed with it too much yet but this is blazingly fast compared to the pi, running the modified Linaro Ubuntu 12.11 from a 16gb eMMC module it boots to the desktop in less than 15 seconds and it's snappiness rivals my desktop with a ssd drive in it now I'm sure it won't be quite as fast if it was running from a micro sd card. They are still working out some kinks in the image and the gpu drivers aren't enabled in ubuntu yet and the hdmi out has terrible overscan on my tv but I'm sure it will get straighten out soon and there are some things I haven't tried yet to fix it.

I did build the latest cgminer just to test out the cpu quickly and it gets ~500khs per core so ~2Mhs total for the 4 cores now that's with the current performance profile they have set in the latest ubuntu image which clocks the cpu to ~2Ghz I forgot to put the watt meter on it to see what it reads but I'll do that next time I remember to do so.

Anyway here are a couple of pics of it next to a raspberry pi and a arduino uno for size comparisons, it's really quite small!

110  Bitcoin / Mining / Re: Raspberry Pi / cgminer for your BFL BitForce on: January 04, 2013, 08:57:24 PM
I'm going to give that a try. Have you had to do this too? (ie are you having stability issues?)
The main question here is can I get the Pi to mine reliably without ANY reboots or hangs?

I have no idea if it will help, I have nothing to test it with as of yet, I have a couple of basics ordered but until they get here I'm just toying around with it.


I wanted to chime in on this as I appreciate the project. I am running a modified version of the 12/8 distro, having switched everything from cgminer to bfgminer 2.10.2. I had a 256mb pi that I switched to a 512mb thinking all usb problems would be fixed. On both versions same day comm error problems solved with doing a rpi-update. I am stock on the november firmware is I also have the bug that rpi-update will not upgrade more then once. Been running 2 days without a reboot, but I except a reboot once every 3-4 days is going to have the be the accepted norm on a RPi. I have not had watchdog reboot the system yet automatically, but will watch for it.

I found this on their forums

Code:
sudo rm -rf /root/.rpi-firmware

then running rpi-update should get the latest without the hang
111  Bitcoin / Mining / Re: Raspberry Pi / cgminer for your BFL BitForce on: January 04, 2013, 12:09:57 AM
Here is what I found. With cgminer 2.10.4 the comm error shows up. With bfgminer 2.9.4 it works but I believe the system is restarting so it's causing a system crash. bfgminer 2.10.1 is misreporting the hash rate for the bfl singles (at random)
I've been running 2.10.0 on my pi since it was released (with MMQ), and it seems to work fine with BFL (though I only just now moved it from my development system to the pi).
I built 2.9.7, and will let that run for a bit to test. How long does it usually take to reboot your pi?
After that, I can test the latest 2.10.x, but I don't expect any change from 2.10.0...

luke-jr@raspberrypi /opt/vc/bin $ ./vcgencmd version
Nov 22 2012 18:09:58
Copyright (c) 2012 Broadcom
version 352766 (release)
luke-jr@raspberrypi /opt/vc/bin $ uname -a
Linux raspberrypi 3.2.27+ #285 PREEMPT Tue Nov 20 17:49:40 GMT 2012 armv6l GNU/Linux


2.9.7 takes about 2 hours to cause a system reboot. Digging though /var/log/messages shows this:

Dec 30 06:46:22 raspberrypi kernel: [18946.081057] smsc95xx 1-1.1:1.0: eth0: Error reading MII_DATA
Dec 30 06:46:22 raspberrypi kernel: [20868.008194] smsc95xx 1-1.1:1.0: eth0: Failed to read register index 0x00000$
Dec 30 07:36:23 raspberrypi kernel: [20868.008221] smsc95xx 1-1.1:1.0: eth0: Error reading MII_DATA
Dec 30 07:36:23 raspberrypi kernel: [23869.190094] smsc95xx 1-1.1:1.0: eth0: Failed to read register index 0x00000$
Dec 30 07:36:23 raspberrypi kernel: [23869.190144] smsc95xx 1-1.1:1.0: eth0: Error reading MII_ACCESS
Dec 30 09:53:58 raspberrypi kernel: [23869.190163] smsc95xx 1-1.1:1.0: eth0: Timed out reading MII reg 01
Dec 30 09:53:58 raspberrypi kernel: [32124.183193] smsc95xx 1-1.1:1.0: eth0: Failed to read register index 0x00000$
Dec 30 11:30:46 raspberrypi kernel: [32124.183223] smsc95xx 1-1.1:1.0: eth0: Error reading MII_DATA
Dec 30 11:30:46 raspberrypi kernel: [37932.079567] smsc95xx 1-1.1:1.0: eth0: Failed to read register index 0x00000$
Dec 30 12:21:33 raspberrypi kernel: [37932.079597] smsc95xx 1-1.1:1.0: eth0: Error reading MII_DATA
Dec 30 12:21:33 raspberrypi kernel: [40979.609688] smsc95xx 1-1.1:1.0: eth0: Failed to write register index 0x0000$
Dec 30 14:23:10 raspberrypi shutdown[10330]: shutting down for system reboot
Dec 30 14:23:20 raspberrypi kernel: [40979.609716] smsc95xx 1-1.1:1.0: eth0: Error writing MII_ADDR

2.10.2 is now what I'm running (I kept on switching between the two to see which one would result in the most stable results...so far cgminer bfgminer (both version) has caused issues.

The thread starter also reported having COM errors with his BFL units with cgminer (latest build).


I was poking around today and found this on http://elinux.org/R-Pi_Troubleshooting maybe this could help?

Crashes occur with high network load

The USB driver allocates memory from the kernel, and when traffic is very high (e.g. when using torrents/newsgroup downloads) this memory can be exhausted causing crashes/hangs. You should have a line like:
Code:
vm.min_free_kbytes = 8192

in /etc/sysctl.conf. Try increasing that number to 16384 (or higher). If that doesn't work, try adding to /boot/cmdline.txt

Code:
smsc95xx.turbo_mode=N

which will reduce network throughput, but has improved stability issues for some.
112  Alternate cryptocurrencies / Altcoin Discussion / Re: Humble Bundle games bundle 9 games! auction for Freicoins! on: January 02, 2013, 05:16:02 PM
sigh... really.... for my miss bid....  :/ dam it

I know, kind of my bad as well I didn't keep tabs on it enough to give you a heads up, please accept my apologies just trying to be fair.
113  Alternate cryptocurrencies / Altcoin Discussion / Re: Humble Bundle games bundle 9 games! auction for Freicoins! on: January 02, 2013, 05:08:42 PM
so did i win??

825

Unfortunately I'm going to have to invalidate this bid the increment was set at 50 frc wouldn't be fair to allow it.

The winner is bushstar! for 800 frc
114  Alternate cryptocurrencies / Altcoin Discussion / Re: Humble Bundle games bundle 9 games! auction for Freicoins! on: January 02, 2013, 03:08:13 PM
2 hours left!
115  Alternate cryptocurrencies / Altcoin Discussion / Re: Humble Bundle games bundle 9 games! auction for Freicoins! on: January 02, 2013, 06:44:08 AM
10 hours to go!
116  Alternate cryptocurrencies / Altcoin Discussion / Humble Bundle games bundle 9 games! auction for Freicoins! on: December 31, 2012, 03:50:47 PM
I got these as part of a Humble Bundle which I purchased to get Saints Row The Third (which I have used already) I'm never going to use them so I thought I'd offer them here for Freicoins.

starting bid: 500 frc
bid increment: 50 frc

Auction will close in ~ 48 hours at 17:00 GMT (noon eastern time 1/2/2013)

All 9 games included in auction:

Darksiders
Red Faction: Armageddon
Metro 2033
Company of Heroes
Company of Heroes: Opposing Fronts
Company of Heroes: Tales of Valor
Red Faction: Armageddon Path to War DLC
Titan Quest
Warhammer 40,000: Dawn of War

117  Bitcoin / Mining / Re: Raspberry Pi / cgminer for your BFL BitForce on: December 31, 2012, 01:24:14 AM
root@raspberrypi:/opt/vc/bin# ./vcgencmd version
Nov 22 2012 18:12:01
Copyright (c) 2012 Broadcom
version 352766 (release)

I'm not sure if this is relevant but could someone else run that command and tell me what firmware version you've got?

I'm running rpi-update right now..taking a long ass time..read somewhere that it could take up to 20 min..

Maybe that will fix this issue..

This is what I get
Code:
root@raspberrypi:/opt/vc/bin# ./vcgencmd version
Dec 28 2012 11:22:54
Copyright (c) 2012 Broadcom
version 359904 (release)



what does
>uname -a
put out?
I tried the latest download and the kernel would not update (just waits forever) still the old version I think
I started from scratch with the script and updated the firmware first and it seemed to work

Should be like
pi@raspberrypi:~$ Linux raspberrypi 3.6.11+ #346 PREEMPT Fri Dec 28 00:50:33 GMT 2012 armv6l GNU/Linux

118  Other / CPU/GPU Bitcoin mining hardware / Re: Raspberry Pi alternatives that can run multiple BFL singles, ASICs ? on: December 30, 2012, 12:00:24 AM
Not seen a mention of these boards: http://www.hardkernel.com

The only bad thing about these things is that the site doesn't accept BTC. Otherwise, they sound fantastic: 2GB of RAM and 6 USB connectors kind of sold it for me. And it's using the Samsung Exynos SOC, so it should have plenty of CPU (and RAM) left over for other stuff. From the complaints I hear from people using these mini-boards, stale shares and reliability are not an insignificant problem. I'd love to hear some first hand experience of the latter with an Odroid offering (I reckon the CPU and RAM should solve the stales issue). I may even dip my toe myself, but not until they appear on Bitmit or something.

I ordered the U2 last week and I also just got a Pi I'll do a comparison assuming if and when I ever get a couple of asic's to to run on them.
119  Bitcoin / Hardware / [Archive] BFL trolling museum on: December 24, 2012, 11:42:24 PM
This is the place where brilliant minds assemble to willfully pool ignorance with questionable logic in order to reach absurd conclusions.
120  Alternate cryptocurrencies / Altcoin Discussion / Re: FreiCoin (FRC) discussion (was FreiCoin (FRC) for TRC, PPC, LTC or BTC) on: December 24, 2012, 06:46:34 PM
Hmm weird, offer on Vircurex right now says BTC/LTC    0.00581002 which looks to me as if it means one litecoin is 5.81002 thousandths of a bitcoin, and that is offer, not ask. SO I do not know how 170 litecoins per thousand comes out as in any way similar to one bitcoin per thousand.

But I am not really awake yet so maybe I am seeing it a wrong way round or something.

A bitcoin per thousand freicoin sounds like a decent enough price to me that it could pry a few thousand freicoin lose from my cold dead hands or even when I actually do wake up my warm ones.

-MarkM-


170 * 0.00581002 = 0.9877034 btc

I have several freicoins as well if someone is interested.

Pages: « 1 2 3 4 5 [6] 7 8 9 10 11 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!