Bitcoin Forum
May 11, 2024, 01:54:07 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 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 »
481  Bitcoin / Project Development / Re: Chinese translation of Bitcoin wiki (150 BTC) on: February 23, 2011, 03:20:53 AM
Nefario, I trust you to manage the project on your end, so give me an address and I will send the 50 BTC to you now, and you can in turn pay out as you see fit.  Hopefully it will be you and not your student giving me an address.  Cheesy

By the way, how much are my 75 yuan worth in BTC these days?  Smiley
482  Bitcoin / Mining / Re: Fan doesn't start in Sapphire 5970? on: February 23, 2011, 03:09:54 AM
Do you have other cards of the same model?  Some BIOSes are pretty stingy with the fan until it starts heating up.  You could always take the shroud off and point a case fan directly at the heat sink.  Did you buy the card used?  It's possible the bearings are starting to seize.
483  Bitcoin / Mining / Re: Looking for used hardware, or advice, for a 2 or 3 card miner, on: February 23, 2011, 03:02:25 AM
Will the cheaper coolermaster case serve with enough room for at least 2 hd's [with 2 5970's] with adequate airflow?

Yes, absolutely.  The drive cage in the HAF-912 comes out completely, thus giving you a lot of clearance and a straight shot from the front fan.  See this video: http://www.coolermaster-usa.com/landing/haf912/home.php?page=features#modular.  I replaced the stock front fan with a high-flow 120 X 120 X 25 mm fan (this one: http://www.newegg.com/Product/Product.aspx?Item=N82E16835705040).
484  Bitcoin / Project Development / Re: Chinese translation of Bitcoin wiki (150 BTC) on: February 22, 2011, 03:19:46 AM
What pages are needed to meet the bounty requirements?

I'll let jgarzik decide since he has more pledged, but I think certainly we should freeze the requirements based on what is currently implemented in the English wiki and not turn it into a moving target as people keep adding more.  What do you think is reasonable, given the current value of bitcoins?
485  Bitcoin / Mining / Re: MINING IS PROFITABLE on: February 22, 2011, 03:06:42 AM
Like Raulo, I question your first assumption:

Quote
Value of a BTC will always be related to the cost of power to produce it, since that's directly related to difficulty, which in turn is related to Bitcoin's popularity

If someone decides to mine because it is profitable, then at some point they will want to collect their profit by closing their position.  Therefore, if they invested in mining equipment using USD or other traditional currency, then they will want to exchange BTC for USD or EUR or whatever once they generate.  This will create selling pressure and drive the value of bitcoin down.  Difficulty is closely related to mining popularity, but value is more closely related to investment and trading popularity.
486  Bitcoin / Mining / Re: Mining infrastructure? (monitoring, bitcoind client and so on?) on: February 21, 2011, 11:00:28 PM
I run this bash script ("status.sh") every 15 minutes via cron to obtain and forward the status of my miners:

Code:
date > status.out
cat /home/user/temps.out >> status.out
ps -e | grep bitc >> status.out
ps -e | grep pocl >> status.out
ps -e | grep minerd >> status.out
cat /home/user/.bitcoin/debug.log | grep generated >> status.out
/home/user/bitcoind getinfo | grep -iE "(balance|connections)" | sed 's/[",]//g' >> status.out
scp status.out user@wwwhost.com:/home/user/status101.out

This provides a date stamp, shows me that all of the relevant processes are running, whether or not I have generated a block, if I have received payment for confirmed blocks and how many connections I have.  Since you cannot obtain the GPU temperatures using aticonfig unless you are executing from an X11 session, I use the following bash script ("temps.sh") which I start in an X11 terminal window:

Code:
while true
do
  /usr/bin/aticonfig --odgt --adapter=all | grep Temp > temps.out
  sleep 900
done

This link has instructions on how to set up ssh (scp) using shared keys:
http://hocuspokus.net/2008/01/ssh-shared-key-setup-ssh-logins-without-passwords/

Each miner copies its status.out file to a separate status file on the "wwwhost.com" machine (see scp command above).  Then the wwwhost.com machine has a cron job which runs five minutes later and parses all the statusXXX.out files into a web page.  There are probably more elegant ways to accomplish this, but I have mine set up this way because the miners are behind a firewall, and I use an external machine to serve a web-accessible status page.
487  Bitcoin / Mining / Re: Looking for used hardware, or advice, for a 2 or 3 card miner, on: February 21, 2011, 10:08:46 PM
You can't put more than 2 double-slot GPUs in a box and still keep them cool without some kind of custom (expensive) cooling system.  So stick with 2 5870s or 2 5970s (good luck finding a 5970).  As far as motherboards, I've used the following, and they are both good:

ASUS M4A79XTD EVO
MSI 870-G45

You want a mobo that will provide one empty slot between the GPUs to allow sufficient airflow.  The MSI 870-G45 has the second GPU in the last two slots, and this can restrict airflow if you are using a tower case with a top-mount PSU or a rackmount case as the GPU fan intake will be next to the case wall.

As far as cases go, I'm a big Cooler Master fan.  I highly recommend a bottom-mount PSU design where the PSU can draw in cool air from underneath the case (mount the PSU fan-side down).  The PSU is the most likely fail point in a mining system because the GPUs will simply throttle if they get too hot.  You also want to be able to mount a high-flow fan in the front of the case blowing air directly on the GPUs.  The Scythe Ultra Kaze is excellent for this purpose, but it is loud.  It's also 38 mm thick and won't work with all cases.  I try to avoid side-mount fans because it's an extra step to remove the cover, and you have a wire dangling which might get caught up in a fan.  Make sure that the case you choose has sufficient clearance for the graphics adapter and that the drive bays do not block the airflow from the front fan.  With all this in mind, the Cooler Master CM-690 II is an excellent case for a mining rig, as is the HAF series (the cheapest HAF-912 works just fine).

You should put your rig on a table or shelf to avoid sucking in the dust which invariably settles on the floor.
488  Bitcoin / Mining / Re: Why no GPU support in the standard client ? on: February 20, 2011, 12:05:00 AM
I'm sorry if this has been covered before but I am interested to know if there is any good reason why there is no GPU support in the standard client.

Is it an intentional choice so that users dont have to understand how to install the latest GFX drivers ?

Even if this were the case, would it not make sense to build it in as an option.

zx

There are too many variations in GPU hardware and thus too many dependencies to deal with.
489  Bitcoin / Development & Technical Discussion / Re: BTC addresses per second on: February 20, 2011, 12:01:47 AM
True, true.  But how many could one process per second inclusive of checking the amount on the account?

Also, how much stress would this create on the network?  Is this a viable denial of service attack?
490  Bitcoin / Bitcoin Discussion / Re: Banned words when explaining Bitcoin to the mainstream on: February 19, 2011, 11:52:25 PM
You need to tailor the bitcoin pitch to the person you're talking with.  There are plenty of non-tech people who would appreciate the anonymous and decentralized nature of bitcoin.  Just don't start talking to them about hashes and key pairs.
491  Bitcoin / Bitcoin Discussion / Re: Lost money on MyBitcoin.com? Report it here. on: February 18, 2011, 10:45:18 PM
The missing 51.04 BTC mysteriously showed up just now in my MyBitcoin account, all in one transaction.  This is roughly 24 hours after the individual transactions were sent.  Strange. 
492  Other / Off-topic / Re: The 2nd Encryption War on: February 18, 2011, 08:45:27 PM
Quote
FBI general counsel Valerie Caproni told Congress that new ways of communicating online could cause problems for law enforcement officials, but categorically stated that the bureau is no longer pushing to force companies like RIM, which offers encrypted e-mail for business and government customers, to engineer holes in their systems so the FBI can see the plaintext of a communication upon court order.

Translation: RIM is already cooperating with us.

Quote
the FBI is still pushing for more online-communications companies to build real-time spying capabilities into their software

Which is why each one of us should ensure the end-to-end privacy of our communications using open-source cryptography software.

Quote
The FBI’s further push for expanded powers to wiretap online communications in real time comes against the backdrop of revolutions in the Middle East that relied heavily on social media communication tools and as Secretary of State Hillary Clinton called for worldwide internet freedom.

Yes, give everyone in the world unfettered access to the internet so we can listen in on their communications and nip any future revolutions in the bud.

Quote
“As the gap between authority and capability widens, the government is increasingly unable to collect valuable evidence in cases ranging from child exploitation and pornography to organized crime and drug trafficking to terrorism and espionage –- evidence that a court has authorized the government to collect,” Caproni said. “This gap poses a growing threat to public safety.”

I am so scared.  Embarrassed  Who is going to save the children?

493  Bitcoin / Mining / Re: Huge jump in network hash power on: February 18, 2011, 08:30:08 PM
The graph presented above
http://bitcoin.atspace.com/income.png
http://bitcoin.atspace.com/income.html
shows exactly the correlation between BTC price and difficulty but in more tangible units. It's BTC price divided by difficulty times a factor for converting it into dollars per 100MH/s.

Hey, this is excellent.  Thanks!
494  Bitcoin / Bitcoin Discussion / Re: If bitcoin took off, could it fund new investments? on: February 18, 2011, 06:32:17 PM
SumChancer, I think that you are absolutely correct.  Bitcoin or other, similar peer-to-peer cryptocurrencies will create an economic revolution.  Freed from interference by governments, banks, large corporations, labor unions and other special interest groups, the market will be able to bloom like never before.  I've been an entrepreneur my entire life and have had to deal with bullshit from these groups in addition to trying to keep cash flowing in and customers happy.  I will never start a business the conventional way again.  For any business ventures I undertake in the future, I will be a stateless actor on the global stage using anonymous reputation systems.  Anyone who asks for government ID numbers before doing business with me will have to look for another patsy.  The fascists have had their century.  This one belongs to us.
495  Bitcoin / Bitcoin Discussion / Lost money on MyBitcoin.com? Report it here. [UPDATE: funds recovered] on: February 18, 2011, 04:46:08 PM
It looks like I am not the only one who has had money sent to MyBitcoin disappear.  Here are two transactions of mine (51.04 BTC total) which never showed up in my MyBitcoin account:

http://blockexplorer.com/tx/78a8f799ea97a55a875a9b281a096319a9706213ef2e1b2a6efd0e89ee018da3#o0
http://blockexplorer.com/tx/f07b101b1edc7cb7c4ab208b910d8008619834eded301d3ed7267e73265d4ac2#o1

The first one was a transfer from one of my miners and the second one was a pool payment from slush's pool.  I have been able to successfully send money from my MyBitcoin account (I cleared out my entire balance to a local wallet).  

I have sent them an email using the address on their contact page, but I have not received a reply.  I urge everyone using MyBitcoin to check recent transactions and verify that you are not missing anything.  If you are, please report it here.
496  Bitcoin / Bitcoin Discussion / Re: mybitcoin on: February 18, 2011, 03:13:39 AM
I'm not so sure it works great.  I sent 50 bitcoins earlier today to my account and it hasn't shown up yet.  Here's the transaction:

http://blockexplorer.com/tx/78a8f799ea97a55a875a9b281a096319a9706213ef2e1b2a6efd0e89ee018da3#o0

It has a status of "not yet redeemed."  They were down for maintenance earlier today.  Hopefully they haven't lost any keys.
497  Bitcoin / Mining / Re: Any advantage really, to solo mining now? on: February 17, 2011, 11:43:42 PM
The difficulty factor will soon be at something like 35,000.  Even with a 5870 (or half of a 5970), the average generation time will be the better part of a week.

The average generation time will certainly be less than the better part of a week.

An %40ish increase in difficulty is certainly significant, but %40 is much less than %200


Go here:

http://developer.wolframalpha.com/widgets/gallery/view.jsp?id=76444b3132fda0e2aca778051d776f1c

If you put in a difficulty of 35,000 and a hash rate of 320 Mhash/s (HD 5870), you get 5.437 days.  5.437 is not the better part of 7?
498  Economy / Marketplace / Re: Buy Tea with Bitcoins on: February 17, 2011, 04:12:06 PM
I can confirm that nmteaco is an honest merchant.  I ordered some gyokuro from them, and it was delivered in a timely manner, well packaged in a sealed, opaque bag (prevents photo-oxidation).
499  Bitcoin / Pools / Re: Cooperative mining (>20Ghash/s, join us!) on: February 16, 2011, 11:16:55 PM
You're amazing, slush.  I look forward to the return of real-time stats.  Did you ever fix the problem of not being able to change worker passwords (memory cache)?
500  Other / CPU/GPU Bitcoin mining hardware / Re: New pure-python CPU miner, for fun and testing on: February 16, 2011, 11:05:44 PM
This is single-threaded, and pulls a whopping 43 Khash/sec on my box.

What type of system are you running?  Hamsters in a box with pencil and paper?  Grin
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!