First Find yourself a Litecoin Pool.
Elitist Jerks = 3% Fee PPS
http://www.ejpool.infoOzcoin = 2% Fee DGM
https://lc.ozcoin.netLitecoinpool.org = 4% Fee PPS
http://litecoinpool.orgPool-X = 2% Fee PPLNS
http://pool-x.euP2P Pool HowTo:
https://bitcointalk.org/index.php?topic=62842.0For more information about Litecoin Pools. Visit
https://github.com/coblee/litecoin/wiki/Comparison-of-mining-poolsMinerd using scrypt for litecoin [
Windows/ or
Linux]
Note : 64 Bit has been known to increase speedsReplace pool.ejpool.info:9332 with any pool that you have chosen in the examples below
Windows:extract
https://github.com/pooler/cpuminer/downloads into a folder end edit "MINE 2 THREADS.bat"
@echo on
ECHO "Example Litecoin miner startup file (1 thread, localhost, set your own user and password)"
ECHO.
minerd.exe --algo scrypt --s 6 --threads 4 --url http://pool.ejpool.info:9332 --userpass username.1:password
put in your worker details you command for starting minerd.exe shuld look sumthing like (depending on your machine):
minerd.exe --url http://pool.ejpool.info:9332 --userpass user:password --threads 2
(replace user and password with details from "My Workers" and --threads with amount of cpu cores you wish to use)
Its working when you see the following.
[2011-10-16 20:27:39] thread 1: 84652 hashes, 3.34 khash/sec
[2011-10-16 20:27:44] thread 1: 6717 hashes, 3.43 khash/sec
[2011-10-16 20:27:44] PROOF OF WORK RESULT: true (yay!!!)
Linux (Ubuntu): sudo apt-get install make automake build-essential libcurl4-openssl-dev git libdb4.8++-dev
git clone git://github.com/pooler/cpuminer.git
cd cpuminer
./autogen.sh
./configure CFLAGS="-O3"
make
./minerd --url http://pool.ejpool.info:9332 --userpass user:password --threads 2
(replace user and password with details from "My Workers" and --threads with amount of cpu cores you wish to use)
Linux (CentOS): sudo yum -y groupinstall "Development Tools"
sudo yum -y install git libcurl-devel python-devel screen rsync
git clone git://github.com/pooler/cpuminer.git
cd cpuminer
./autogen.sh
./configure CFLAGS="-O3"
make
./minerd --url https://pool.ejpool.info:9332 --userpass user:password --threads 2
(replace user and password with details from "My Workers" and --threads N with amount of cpu cores you wish to use)
If you have issues with Ubuntu or CentOS please come into our IRC channel and we will be more than happy to help you.
MAC(OSX): Binaries can be downloaded here.
https://github.com/pooler/cpuminer/downloadsThanks to Pooler for all the great work he has done with cpuminer!
IF you feel anything needs to be added or changed in this short little how to.. please let me know.
NOTE: If you get missing libcurl for 64 bit linux. Here is how to resolve it. Make sure to rerun ./autogen.sh after you install libcurl
cd /root
wget http://curl.haxx.se/download/curl-7.24.0.tar.gz
gzip -d curl-7.24.0.tar.gz
tar -xvf curl-7.24.0.tar
cd curl-7.24.0
./configure
make
make install
cp /root/curl-7.24.0/docs/libcurl/libcurl.m4 /usr/share/aclocal/libcurl.m4
ln -s /usr/local/lib/libcurl.so.4 /lib64/libcurl.so.4