Bitcoin Forum
May 13, 2024, 06:45:27 PM *
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 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 [46]
901  Bitcoin / Pools / Re: [270GH/s] p2pool: Decentralized, DoS-resistant, Hop-Proof pool on: February 15, 2012, 02:19:03 PM
We jave just reached 300GHASH/S

 Cheesy Cheesy Cheesy

That's because I just joined this morning.  Cool
902  Other / Beginners & Help / Re: Bitcoin mining setup questions on: January 31, 2012, 05:22:18 PM
You have to view BTC mining as a business.  The fundamental question is, "how long will it take to recoup my initial investment?"  In other words, how long will it take for you to mine enough BTC to pay for your hardware investment.

So you want to select the hardware that gives the highest hashrate per dollar (or whatever).  The higher the hashrate/$, the less time it will take to pay for itself.
Check out this bitcoin hardware comparison table: https://en.bitcoin.it/wiki/Mining_hardware_comparison#Single_Card_Setups

I was a cheap noob looking to get started so I picked a 6770 card.  The hashrate/$ was OK and the card itself was cheap so I was satisfied.
903  Bitcoin / Mining software (miners) / Re: CGMINER miner overclock monitor fanspeed RPC in C linux/windows/osx 2.1.2 on: January 22, 2012, 01:44:51 AM
No doubt building on windows is nothing short of a pain. I can't even remember any more what I had to install manually but I'm pretty sure what's listed in the README covers all the essentials. Both binaries and dev libraries need to be installed and I had to manually shift some header files into the include directory to get everything recognised. I think installing pkg-config was the most troublesome, but even that I'm not sure of any more since I just kept randomly installing shit till the mother worked.

In short, windows is very much the 2nd class citizen for cgminer. The fact I can provide binaries for it at all is a miracle and I'd rather do without it myself.

Having done this sort of drudgery in the past I appreciate what you went through to get it working in Windows.  It shows true devotion to your project.
904  Bitcoin / Mining software (miners) / Re: CGMINER miner overclock monitor fanspeed RPC in C linux/windows/osx 2.1.2 on: January 21, 2012, 11:24:39 PM
So when you build for Windows do you build under Linux or Windows?
In a windows virtual machine running XP.

Do I have to add anything for the build to find the Windows Platform SDK?
905  Bitcoin / Mining software (miners) / Re: CGMINER miner overclock monitor fanspeed RPC in C linux/windows/osx 2.1.2 on: January 21, 2012, 10:49:43 PM
When everything is installed properly, you shouldn't need to be hacking configure or makefile scripts for it to build on mingw32. On the other hand, I never build it from git or autoreconf. I always grab a tarball (make dist-bzip2) and use that to build the windows version from.

So when you build for Windows do you build under Linux or Windows?
906  Bitcoin / Mining software (miners) / Re: CGMINER miner overclock monitor fanspeed RPC in C linux/windows/osx 2.1.2 on: January 21, 2012, 08:20:21 PM
Sadly, that always happens to me. Haven't debugged but worked around it. Open configure.ac, remove the pkg_config check for libcurl, open Makefile.am, and replace @LIBCURL_FLAGS@ or whatever the keyword is with direct paths to the library directory where libcurl.a resides and add -lcurl then.

OK, gotcha.  I actually found after fooling around some that if you comment the lines thus:

#PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.15.6], [AC_DEFINE([CURL_HAS_SOCKOPT], [1], [Defined if version of curl supports sockopts.])],
#[PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.10.1], ,[AC_MSG_ERROR([Missing required libcurl dev >= 7.10.1])])])
#AC_SUBST(LIBCURL_LIBS)

and add the line:

LIBCURL_LIBS=-lcurl

you don't have to change Makefile.am

Of course now it's bitching about include files in the Platform SDK.
907  Bitcoin / Mining software (miners) / Re: CGMINER miner overclock monitor fanspeed RPC in C linux/windows/osx 2.1.2 on: January 21, 2012, 06:27:42 PM
I'm trying to build cgminer under mingw32 on windows but I'm having problems.  I've been searching this thread, reading ckolivas documentation on github and basically beating my head against the wall for a couple of days now.

I've successfully installed pkg-config-0.26, PDCurses-3.4 and curl-7.23.1.
After building libcurl from source under mingw32, I copied libcurl.m4 to /mingw/share/aclocal
I copied pkg.m4 to /mingw/share/aclocal

I also installed Microsoft platform SDK, AMD APP sdk, and AMD ADL sdk


When I tried building cgminer I did the following from within MSYS of mingw32:
autoreconf -fvi (ran fine)
CFLAGS="-O2 -msse2" ./configure

I get an error from .configure:

checking for LIBCURL... no
checking for LIBCURL... no
configure: error: Missing required libcurl dev >= 7.10.1

I'm positive I installed libcurl so I'm stumped why it's complaining.

I searched this thread and found someone else with the same error but I couldn't find what the resolution was.

BTW - I'm a software professional, not a n00b.  I've even used libcurl in the past with Visual Studio C++ before.  The mingw32 thing is new to me.
908  Bitcoin / Mining / Re: Scheduling Mining on: January 17, 2012, 01:34:23 AM
cgminer has a time scheduler built in, no fussing with cron and the like.
909  Other / Beginners & Help / Re: Who is Satoshi Nakamoto?! Let's find out! on: January 15, 2012, 06:58:27 PM
My bet is that he/she is just a middle aged American with a anime fetish or so Tongue

I heard she's into Furries.  Cool
910  Bitcoin / Mining software (miners) / Re: CGMINER miner overclock monitor fanspeed RPC in C linux/windows/osx 2.1.2 on: January 13, 2012, 03:38:40 PM
You're assuming that people with questionable morals/ethics are obvious based on their behavior on message boards.

An aside:  this reminds me of the business with the Reiser file system in Linux, written by the convicted murderer Hans Reiser
Good stuff but not universally adopted partly due to the "ick factor" with the man himself.
911  Other / Beginners & Help / Re: second card not detected on: January 13, 2012, 03:33:56 PM
Is a monitor plugged into the card? If not, are you using a dummy plug?
912  Bitcoin / Mining software (miners) / Re: CGMiner - restricting clock settings by time (time-based clock setting) on: January 13, 2012, 01:34:50 AM

I see no problem changing intensity when you are going to bed or sleeping. It is fairly easy to do via [G]->->Enter GPU->Enter intensity

I know but I'm lazy.  I want it automatic like OP.
913  Bitcoin / Mining software (miners) / Re: CGMiner - restricting clock settings by time (time-based clock setting) on: January 13, 2012, 01:10:23 AM
Unless I'm missing something it doesn't look like cgminer does what OP wants.  There's a --sched-start and --sched-stop switch for turning mining on/off.  But not throttling the clock speed based on time.

I'd like to change the intensity based on time of day myself.  For instance when I'm not on the computer at night and while at work I'd like the intensity to be high, but low otherwise.
914  Other / Beginners & Help / Re: Newbies Hangout on: January 11, 2012, 02:53:36 AM
I wonder why people hated Paypal so much.


Because they won't let you buy guns or "gun related" products.

I hate them but they're damn hard to replace.
915  Other / Beginners & Help / Re: further improved phatk OpenCL kernel (> 4% increase) for Phoenix - 2011-12-21 on: January 09, 2012, 05:40:55 PM
Hmm I made some calculations and I saw that the Mhash/s is incorrect.
it indicates I get around 418Mh/s
my pool indicates I get 403 Mh/s

7610 9-1-2012 17:18

7879  9-1-2012 18:01

time=2580 sec
shares=269

269 x 2^32 =1 155 346 202 624 / 2580 =447 808 606
447 808 606 / 1 000 000 = 447,808606 Mh/s

or am I doing something wrong here, why are they all reporting different speeds Huh

I've noticed this myself.  Guiminer reports I'm running a pretty solid 185 Mhash/sec but my speed as reported by deepbit is all over the place.
I've seen it as high as 260 and as low as 50.
916  Other / Beginners & Help / Re: Best mining GPU? on: January 03, 2012, 12:11:02 PM
If you check the "Single Card Setups" section in https://en.bitcoin.it/wiki/Mining_hardware_comparison#Single_Card_Setups you'll see a column for Mhash/s/$.  The 6750 or 6770 are the cheapest, yet give fair performance of around 200 mhash/sec.

I'm getting a 6770-based card first.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 [46]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!