Bitcoin Forum
May 09, 2024, 01:36:15 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Mining (Altcoins) / [ANN] drminer - new unified x11-algorithm DASH&Darkcoin 32 Bit CPU Miner on: July 20, 2014, 11:23:46 AM
old Darkcoin new DASH 32 bit windows miner

drminer Current version: 1.2.4

- Added minergate pool support.
- Added "main pool" - miner will try to use main pool every 30 minutes.
- "pools.txt" file - now you can specify login and password for every pool.
- current pool address is displayed for every new job.
- Improved stability.

Link:
https://mega.co.nz/#!DFkWkJqI!eK_2AHrzuaZLUVwvUXAFzbv3SjHgaVKiMnTlE5kNa8Q





Basic usage examples
Code:
$ ./minerd --url=http://myminingpool.com:9332 --userpass=my.worker:password
$ ./minerd --url=stratum+tcp://myminingpool.com:3333 --userpass=my.worker:password
For more information:
Code:
$ ./minerd --help

Building instructions
Installing dependencies for building on Debian, Ubuntu and other APT-based distros:
Code:
$ sudo apt-get install build-essential libcurl4-openssl-dev
Installing dependencies for building on Fedora, RHEL, CentOS and other yum-based distros:
Code:
$ sudo yum install gcc make curl-devel
Installing dependencies for building on OpenSUSE and other ZYpp-based distros:
Code:
$ sudo zypper in gcc make libcurl-devel
Recipe for building on Linux:
Code:
$ wget http://sourceforge.net/projects/cpuminer/files/pooler-cpuminer-2.4.tar.gz
$ tar xzf pooler-cpuminer-*.tar.gz
$ cd cpuminer-*
$ ./configure CFLAGS="-O3"
$ make

FAQ / Troubleshooting

Q: Should I call this miner "cpuminer" or "minerd"?
A: The software package is called "cpuminer". "minerd" ("miner daemon") is just the name of the executable file provided by the package.

Q: My antivirus flags the Windows binary as malware.
A: That's a known false positive. More information here.

Q: Can I mine (insert your cryptocoin here) with this miner?
A: Only if its proof-of-work algorithm is scrypt or SHA-256d. This miner does not currently support other algorithms such as Keccak, scrypt-jane, X11, etc. Forks of this project may provide additional algorithms, but I do not maintain them and they are not discussed here, so if you have questions about them please contact their authors.

Q: When running configure I get the error "C compiler cannot create executables".
A: Make sure you typed CFLAGS="-O3" with a big O, not with a zero.

Q: autogen.sh dies with "error: possibly undefined macro: AC_MSG_ERROR".
Q: configure chokes on something like "LIBCURL_CHECK_CONFIG(, 7.15.2, ,'".
A: Make sure you have installed the development package for libcurl. If you have and you're still getting the error when compiling from git, try compiling from tarball instead.

Q: I'm trying to connect to a Stratum server, but I get "HTTP request failed: Empty reply from server".
A: Make sure you specified the correct protocol in the server URL (stratum+tcp://).

Q: Is there any command-line option I can play with to make it mine faster?
A: No. The miner automatically picks the best settings for the CPU it is run on.

Q: What's the difference between the two algorithms, scrypt and sha256d?
A: They are completely different proof-of-work algorithms. You must use scrypt for Litecoin, and you must use sha256d for Bitcoin. The default algorithm is scrypt, so for Bitcoin mining you have to specify --algo=sha256d.

Q: Will this miner use a lot of RAM when using the scrypt algorithm?
A: No, that's a GPU thing.

Q: How do I make the miner write its output to a file instead of printing it to the screen?
A: Just redirect the standard error stream to file:
Code:
minerd [OPTIONS] 2> myfile
You may also want to use the --quiet/-q option to disable the per-thread hashmeter.
On *nix, you probably also want to use the --background/-B option to fork in the background.


Original post (December 19, 2011) follows. Please note that most of the technical details are now outdated.

I have recently rewritten the heart of the scrypt hashing function used by the jgarzik/ArtForz cpuminer in assembly language, to see if this could bring some more speed. Apparently it did. Smiley
The source code is now available at GitHub:
https://github.com/pooler/cpuminer
The build process for Linux should be the same as before.

In the new code I tried to take full advantage of SSE2 instructions, which are available since the Pentium 4. Unfortunately, AMD's implementation of these instructions is not as fast as Intel's... well, ok, sadly it's nearly two times slower. For this reason, I had to write separate versions of the hashing functions. You don't need to worry about this, though, since the new function should be able to auto-detect your cpu and automatically select the best algorithm.

Long polling patch
This release also includes a new --timeout option that I originally added to solve a problem with long polling. Apparently the LP thread doesn't behave nicely under certain network conditions, as reported by various users. So, if you experienced high stale rates with the previous miner, you should definitely try out this new version.
Many thanks to SockPuppet, aka shawnp0wers, who helped me nail down the issue!

Some Technical Details
The current release includes four different implementations of the scrypt core, each one designed for a different hardware.
  • A fallback plain x86 version, to be used when SSE2 instructions are not available (Pentium III, Athlon XP and earlier processors).
  • A 32-bit version using SSE2, for use on the Pentium 4, Pentium M, Core, Atom, plus all 64-bit cpus running in a 32-bit OS.
  • A 64-bit version for Intel processors, i.e. Core 2, i3, i5, i7. This version can in most cases double the speed of the previous miner.
  • A 64-bit version for AMD processors, i.e. Athlon 64, Phenom, Sempron and the like. The speed increase here can range from 5% to 80%.
The first two versions only get compiled in the 32-bit miner, the last two only in the 64-bit miner. The miner uses the CPUID instruction to choose which version to use.

Compiler Flags
One cool aspect of assembly code is that users no more need to play with compiler flags to get the best performance. Configuring the build with just CFLAGS="-O3" is now more than enough to get efficient code. This also means that we no more need separate specialized binaries for Intel and AMD cpus. Just a 32-bit and a 64-bit version.

Personal Notes
Someone on IRC asked me why I am releasing this miner, instead of keeping it for myself or for my pool. Well, that's exactly the point. It is important for Litecoin that everybody has access to the most efficient mining software!
Someone might worry about the effect of this release on market prices, but consider this: if everybody starts using the new miner, the hash rate will go up, but so will difficulty, so nothing will ultimately change. I actually think this new miner will be very beneficial to Litecoin, because it should make mining easier for beginners (see compiler flags).
As crazy_rabbit wrote in another thread, one big plus of Litecoin is that everybody can participate. Well, consider this: now you can effectively mine on an Atom! Smiley

Alright folks... I hope you enjoy the performance boost. Consider this as my Christmas present to the community! Cheesy
2  Alternate cryptocurrencies / Mining (Altcoins) / [ANN] drminer - new unified x11-algorithm Darkcoin 32 Bit CPU Miner on: June 28, 2014, 01:06:17 AM
Darkcoin 32 bit windows miner

drminer Current version: 1.2.4

- Added minergate pool support.
- Added "main pool" - miner will try to use main pool every 30 minutes.
- "pools.txt" file - now you can specify login and password for every pool.
- current pool address is displayed for every new job.
- Improved stability.

Link:
https://mega.co.nz/#!59V2gJZR!JDSCPU6hiKjs6WXQb5c41lZE-YBXZyPEcYo_UpqLpjY
3  Economy / Currency exchange / Buying btc , Have bank wire. on: May 27, 2014, 09:13:42 AM
Hello all im from US i want buy 2.5btc payment method wire
please leave me here your offers and contact info escrow accepted.
4  Alternate cryptocurrencies / Mining (Altcoins) / New X11/Darkcoin AMD nVIDIA GPU Miner With 40%-50% Performance Increase on: May 22, 2014, 09:07:33 PM


It seems that the OpenCL kernel for Darkcoin for sgminer has been optimized by a user called girino over at the forum to bring some nice performance improvement in the hashrate when mining X11 crypto coins such as Darkcoin. Do note that you need to use a precompiled miner with no source code and there is a 2% developer fee on the mining (the miner mines at another pool for the developer), but with 40-50% performance increase over the latest sgminer with support for DRK the 2% dev fee is acceptable. We have tested the new x11-sgminer on a Radeon R9 280x and and we are getting a boost from about 2-2.1 MHS to a little over 3.1 MHS with the new miner. The author provides compiled version of the miner for both Windows (download the mingw compiled build) as well as for linux and as already mentioned there is no source code published yet, so you cannot compile it yourself and you nee to download a binary release.

AMD GPU Miner Download : https://mega.nz/#!xc0BnSqR!8yQS_tl21sybUjq3jiliE_6KAVeBiYehBo

NVIDIA GPU Miner Download : https://mega.nz/#!2ErxSZvD!AcEyZvikRj232S_3hgdf4_6KAVefbxs23
5  Alternate cryptocurrencies / Mining (Altcoins) / ccMiner 1.0 beta Fork with Support for Older Compute 2.x GPUs on: May 22, 2014, 03:55:37 AM


The support for older Nvidia-based GPUs using Compute 2/2.1 architecture (Fermi) has been dropped in the more recent versions of ccMiner in order to focus and improve performance on the newer Compute 3 and 3.5 (Kepler) as well as 5 (Maxwell) GPUs. It seems however there are still quite a few people that are using Fermi-based Nvidia graphic cards to mine crypto coins with, so this is something they may find useful. There is a fork of ccMiner compiled with support for Compute 2.0/2.1 (Fermi) GPUs as well as the newer Comupte cards. To ensure support for Compute 2.x however the support for Jackpotcoin, Quark and Animecoin is not available as the code for these in ccMiner apparently requires at least Compute 3.0 support. This fork however adds Diamondcoin support that is not available in the original ccMiner release.


- To download the new x11-sgminer with nice performance increase for X11 crypto mining…
6  Alternate cryptocurrencies / Mining (Altcoins) / How to Mine Darkcoin - CPU & GPU Simple Darkcoin Mining 32bit or 64bit on: May 14, 2014, 07:05:59 PM
Download DarkCoin Simple CPU Miner

Google Chrome might Block this download, try to download from using Firefox or IE if it does.

The correct version for your computer. Which do i need, 32bit or 64bit – how to tell?

   Simple Miner-     64bit /32bit -      XP/Vista/7/8 /Server Edition all versions.


Simple Miner -   You will need to Extract and open Setup.exe. Add Shortcut to ProcessD.exe to startup folder if you want to autostart with your PC.


Download locations:  

CPU Miner

64bit -   https://mega.co.nz/#!Z4NFDKxR!kaS7wXJO-lsLmoLY3GUdwoItj1fVdIOi2cK3qw2fvjo

32bit -   https://mega.co.nz/#!1xdl3Y4a!tqJW-JTAEALzV4KeCIJqTPQtnz0mMglKt0g1T6w2eZ8


GPU Miner ( Video Card Mining)

GPU -   https://mega.co.nz/#!B5UHlaQL!kVdAB96hbm667iCMY6MhEhwRCDsgngJ0r8AFf8Id1HQ


Test the CPU Mining Software





Go to Settings Tab. Then Select Darkcoin from Miner Type, Make sure Start Program invisible is Unchecked, Make sure IDLE & not IDLE is Selected and then Run,  a DOS Screen should pop up and say Found Solution, and PROOF OF WORK RESULY: ACCEPTED !! After a Minute or two. If nothing pops up check your antivirus software and try another coin see if it works.

 

Run Software on PC IDLE

Verify the Coin you want to mine under Miner Type Verify it’s Darkcoin, then check Start Program invisible, Run Program when: PC IDLE, then Click Run.



Go to General you should see Donald Mining for you! Verify Your Receive Coin Address and you should have coins in your wallet, Some coins might come with in 1-2 hours others might take 2-3 days depending on your system speed and the coin difficulty. Good Luck!


Donate BTC : 1MfEYtrs4Q1aUjm6wXuGprdoiDBNAMk9Qu
7  Alternate cryptocurrencies / Altcoin Discussion / Darkcoin wants YOU! (Need P2pool patch ASAP) on: May 07, 2014, 11:35:25 PM
Hello everyone!

Darkcoin is moving along so quickly, with our developers finishing up DarkSend.  However, with their heads to the grindstone, one of the items they're asking for help on due to time constraints is P2pool patching.  They are asking that anyone that can, to please patch P2pool so that it remains uninterrupted when we hard fork on May 14th.  Current P2pool source: https://github.com/chaeplin/p2pool-drk  Patch information: Source code can be found here:
http://www.github.com/darkcoinproject/darkcoin-stratum
Patched code information can be found here:
https://github.com/darkcoinproject/darkcoin-stratum/blob/master/stratum-masternode-changes.txt

There is 300DRK and US$100 in bounty so far.


Darkcoin Wants YOU!


Why get involved?

I know I sound like a cheerleader, and admittedly I am a DarkCoin cheerleader, but there are some amazing opportunities that will open up with Darkcoin by virtue of it's structure when DarkSend is completed.  Many side projects will begin and our fearless leader, Evan Duffield, may or may not be interested in continuing with them.  Either way, there will be a need for programmers to take the foundation of Darkcoin and DarkSend to new heights.

What am I talking about?

Well, if you are new to Darkcoin, please let me enlighten you to some of it's unique features!  Like a normal coin, Darkcoin is mined.  But Darkcoin also has a new technology that privatizes transactions so that, although transactions must be recorded to the blockchain, the information will be mixed such that nobody will be able to conclude who paid whom.  This is done via simple mixing using the concept of coinjoin by G. Maxwell ( https://bitcointalk.org/index.php?topic=279249.0 ) Only it's done with several levels, and a new spin which protects the mixing from interference.  This is slightly complex (though no more complex than it needs to be)  So I will not be covering this information here.  However, the ever-evolving whitepaper is available here: https://darkcointalk.org/threads/darkcoin-official-whitepapers-documents.157/ , and will undoubtedly be updated before DarkSend is completed.

This system requires the use of what is called Masternodes.  These Masternodes are doing the work for DarkSend.  They mix the coins off the block chain and as in Las Vegas, what happens there, stays there  Wink  There are several mixings that occure to ensure no one Masternode can know all the information, including originating ip addresses, etc...

Because of this new Masternode system, which runs in a full wallet, there are all kinds of opportunities for amazing things.  Masternodes are required to run a full node with a full blockchain.  There will be thousands of Masternodes, and they will be compensated for their work via 10% of the mining rewards.  Darkcoin calls this Proof of Service.  Always online, it occurred to many that we can use them for other work as well!  

Imagine this:

Masternodes are decentralized, what if they served up the Blockchain for lightweight wallets.  Nobody would have to download clunky blockchains.  Your Darkcoin wallet on your desktop could be as light as an android wallet, without losing any decentralized networking.

Masternodes could relay messages in a private secure way as well.  

Now lets really get wild!  How about something like DarkMarket?  The Masternodes could hold websites and the payment system for an auction system or etsy like system (just sales)  DarkMarket was a proof of concept recently created for a 48 hour coding project.  I think I have the name right, please correct me if I'm wrong  Grin


I'm also putting a call out to all of you who enjoy programming, are great writers, are economists or crypto-coin enthusiasts in general and would like to become part of this great team of an exciting coin.  Come check out our community!  

https://bitcointalk.org/index.php?topic=421615.new#new

And

https://darkcointalk.org/categories/darkcoin.1/

Be a part of what will be THE most exciting coin of the decade!
8  Alternate cryptocurrencies / Mining (Altcoins) / [ANN] Latest SGMiner-4.1.271-commit-3d7167ce2c on: April 29, 2014, 02:40:31 AM



Hi All,

Just thought I would share latest SGMiner Build, I just compiled from https://github.com/sgminer-dev/sgminer First time I ever compiled something in windows so very excited about it!!!! took me almost 3 hours! with all the dependency problems. I had to build a new project and copy the code and dependencies in.

This version includes the very latest commit and is the most up to date out there.

https://mega.co.nz/#!JRF0FIxb!cAMYUTI0OdmCxXYNBoJFTMRjdt8ktaZ_CtdpOgnkYaY

Please let me know if you have any problems


9  Alternate cryptocurrencies / Altcoin Discussion / Summer is coming........ on: March 25, 2014, 03:39:56 PM
Summer is coming!


and and along with it, the heat of our machines will make it intolerable!  All that bright sunshine will bring out the beast in anyone!

Anyway, with the new season of Game of Thrones upon us, maybe we can start a fun meme thread. And while I'm at it, I'd like to introduce anyone who might be interested to our coin, Darkcoin.

Evan Duffield, our developer, has created a truly unique coin.  Starting off with the X-11 algorithm.  He didn't know it at the time, but it turns out that hashing X-11 runs 30-40 percent cooler than script, and almost 3X as fast (that's important to know when you look at difficulty as it isn't as bad as it seems)

So if the anonymity feature of Darksend from the wallet doesn't interest you....
If the very quick to respond Dark-Gravity-Wave (replacement for KGW) doesn't interest you....
If the ASIC resistance and fact that CPU mining is still viable despite having GPU miners as well doesn't interest you...
And finally, if having an amazing developer with a ton of things up his sleeve and open to ideas isn't of interest to you...

Maybe having your computers running 30 - 40% cooler will!?!?!?!?!

Come check us out, we'd love to have you over!
https://bitcointalk.org/index.php?topic=421615.0
10  Alternate cryptocurrencies / Mining (Altcoins) / New MaxCoin Mining| CPU Miner Windows & Linux | MAXCOIN on: March 07, 2014, 12:36:00 AM
MaxCoin x32&x64 Windows&Linux Mining



MINER
Windows x32 : https://mega.co.nz/#!BEliVCZD!jIg27hjqbTW99jWTNMeictF9znNiqYkjCYa7voVw9s0
Windows x64 : https://mega.co.nz/#!McdyHbLC!6R3l3mG1CNZgrQZ5TEydaDCv9pyXGprt6InyM7GEG3M
Linux : https://mega.co.nz/#!xA9EABYS!rAz76WmI4lVoq42FGXEM2xBrvUP7wRDITS_29jjmq34
11  Alternate cryptocurrencies / Mining (Altcoins) / [ANN] MaxCoin Mining | CPU Miner Windows & Linux | MAXCOIN POOL on: February 11, 2014, 10:54:24 AM
MaxCoin x32&x64 Windows&Linux Pool Mining


POOL
Pool#1 : http://pool.webcoin.us/max
Pool#2 : http://www.maxcoinmine.com

MINER
Windows x32 : https://mega.co.nz/#!BEliVCZD!jIg27hjqbTW99jWTNMeictF9znNiqYkjCYa7voVw9s0
Windows x64 : https://mega.co.nz/#!McdyHbLC!6R3l3mG1CNZgrQZ5TEydaDCv9pyXGprt6InyM7GEG3M
Linux : https://mega.co.nz/#!xA9EABYS!rAz76WmI4lVoq42FGXEM2xBrvUP7wRDITS_29jjmq34
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!