Bitcoin Forum
April 20, 2024, 03:53:52 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: [INFO] Getting Started with Litecoin Mining [INFO]  (Read 40098 times)
wknight (OP)
Legendary
*
Offline Offline

Activity: 889
Merit: 1000


Bitcoin calls me an Orphan


View Profile WWW
February 02, 2012, 08:36:22 PM
Last edit: June 08, 2013, 01:48:33 PM by wknight
 #1

First Find yourself a Litecoin Pool.

Elitist Jerks = 3% Fee PPS http://www.ejpool.info
Ozcoin = 2% Fee DGM https://lc.ozcoin.net
Litecoinpool.org = 4% Fee PPS http://litecoinpool.org
Pool-X = 2% Fee PPLNS http://pool-x.eu


P2P Pool HowTo: https://bitcointalk.org/index.php?topic=62842.0

For more information about Litecoin Pools. Visit
https://github.com/coblee/litecoin/wiki/Comparison-of-mining-pools


Minerd using scrypt for litecoin [Windows/ or Linux]

Note : 64 Bit has been known to increase speeds

Replace 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"
Code:
@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):
Code:
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):
Code:
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
Code:
./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):
Code:
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
Code:
./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/downloads


Thanks 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
Code:
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

Mining Both Bitcoin and Litecoin.
1713585232
Hero Member
*
Offline Offline

Posts: 1713585232

View Profile Personal Message (Offline)

Ignore
1713585232
Reply with quote  #2

1713585232
Report to moderator
1713585232
Hero Member
*
Offline Offline

Posts: 1713585232

View Profile Personal Message (Offline)

Ignore
1713585232
Reply with quote  #2

1713585232
Report to moderator
1713585232
Hero Member
*
Offline Offline

Posts: 1713585232

View Profile Personal Message (Offline)

Ignore
1713585232
Reply with quote  #2

1713585232
Report to moderator
No Gods or Kings. Only Bitcoin
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
juggalodarkclow
Legendary
*
Offline Offline

Activity: 980
Merit: 1000



View Profile
February 02, 2012, 08:39:37 PM
 #2

+1

very good write up, hopefully the ltc/usd keeps rising

Remember remember the 5th of November
Legendary
*
Offline Offline

Activity: 1862
Merit: 1011

Reverse engineer from time to time


View Profile
February 02, 2012, 09:02:22 PM
 #3

On the Linux instructions, there is no need for additional CFLAGS, -O3 suffices for this.
On the Centos installation instructions, you are missing a number after -j which specifiec concurrent compilation of files.

BTC:1AiCRMxgf1ptVQwx6hDuKMu4f7F27QmJC2
wknight (OP)
Legendary
*
Offline Offline

Activity: 889
Merit: 1000


Bitcoin calls me an Orphan


View Profile WWW
February 02, 2012, 09:04:50 PM
 #4

Squidnet2 "metapool" also available for LTC mining http://www.squidnet.org/statistics/ltc

Sure.. ill add it but I cant find what the payment system is.. do you know?

Mining Both Bitcoin and Litecoin.
wknight (OP)
Legendary
*
Offline Offline

Activity: 889
Merit: 1000


Bitcoin calls me an Orphan


View Profile WWW
February 02, 2012, 09:11:14 PM
 #5

No worries.. I added it.. I might get more detailed with pools later Smiley

Mining Both Bitcoin and Litecoin.
wknight (OP)
Legendary
*
Offline Offline

Activity: 889
Merit: 1000


Bitcoin calls me an Orphan


View Profile WWW
February 02, 2012, 09:14:20 PM
 #6

On the Linux instructions, there is no need for additional CFLAGS, -O3 suffices for this.
On the Centos installation instructions, you are missing a number after -j which specifiec concurrent compilation of files.

Thanks.. fixed a few of those

Mining Both Bitcoin and Litecoin.
wndrbr3d
Hero Member
*****
Offline Offline

Activity: 914
Merit: 500


View Profile
February 02, 2012, 09:43:14 PM
 #7

I would love to setup a private Litecoin Pool for my company, but getting ArtForz pushpool working correctly has been challenging to say the least.

Getting closer every day I suppose Tongue
wknight (OP)
Legendary
*
Offline Offline

Activity: 889
Merit: 1000


Bitcoin calls me an Orphan


View Profile WWW
February 05, 2012, 03:59:46 PM
 #8

Could always be a good thing when people dont reply. Not much more to fix.

However made a couple changes Smiley

Mining Both Bitcoin and Litecoin.
StewartJ
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250



View Profile
February 05, 2012, 06:58:27 PM
 #9

Could always be a good thing when people dont reply. Not much more to fix.

However made a couple changes Smiley

Awesome thread.

This is giving a hand up to all the wannabe Litecoin miners

Going to start mining LTC myself and get my cpu dirty.
wknight (OP)
Legendary
*
Offline Offline

Activity: 889
Merit: 1000


Bitcoin calls me an Orphan


View Profile WWW
February 06, 2012, 03:20:36 PM
 #10

Added Libcurl note as this might come up with some people. I found this to be the easiest and cleanest way to get it installed

Mining Both Bitcoin and Litecoin.
wknight (OP)
Legendary
*
Offline Offline

Activity: 889
Merit: 1000


Bitcoin calls me an Orphan


View Profile WWW
February 12, 2012, 02:33:54 PM
 #11

Remember,

keeeping up to date with the latest cpuminer from pooler may increase your khash Smiley

Mining Both Bitcoin and Litecoin.
Tittiez
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500



View Profile
February 12, 2012, 05:27:55 PM
 #12

What about p2pool? Its at 3.5MHash/s!
wknight (OP)
Legendary
*
Offline Offline

Activity: 889
Merit: 1000


Bitcoin calls me an Orphan


View Profile WWW
February 15, 2012, 06:42:16 PM
 #13

Added a link to the HowTo. Seems to be growing very well!

Mining Both Bitcoin and Litecoin.
wknight (OP)
Legendary
*
Offline Offline

Activity: 889
Merit: 1000


Bitcoin calls me an Orphan


View Profile WWW
February 21, 2012, 09:37:07 PM
 #14

Updated the https:// to git:// for all git pull jobs

Mining Both Bitcoin and Litecoin.
Retired
Sr. Member
****
Offline Offline

Activity: 490
Merit: 250


View Profile WWW
February 22, 2012, 07:58:27 PM
 #15

This should be a great head start for those hesitant to try CPU mining. Stop leaving money on the table! Smiley
Garr255
Legendary
*
Offline Offline

Activity: 938
Merit: 1000


What's a GPU?


View Profile
March 02, 2012, 07:29:22 AM
 #16

Thanks Cheesy

“First they ignore you, then they laugh at you, then they fight you, then you win.”  -- Mahatma Gandhi

Average time between signing on to bitcointalk: Two weeks. Please don't expect responses any faster than that!
Jakel-s
Member
**
Offline Offline

Activity: 92
Merit: 10


View Profile
March 04, 2012, 10:30:11 PM
 #17

I'm sorry but I don't get this at all, I extracted the file and their is not 2 threads.bat file anywhere. What am I missing?
bitcoinsarefun
Member
**
Offline Offline

Activity: 98
Merit: 10



View Profile
March 04, 2012, 10:45:52 PM
 #18

I'm sorry but I don't get this at all, I extracted the file and their is not 2 threads.bat file anywhere. What am I missing?

just create the file yourself and add cut & paste the example
Jakel-s
Member
**
Offline Offline

Activity: 92
Merit: 10


View Profile
March 04, 2012, 11:24:41 PM
 #19

Thanks!
conspirosphere.tk
Legendary
*
Offline Offline

Activity: 2352
Merit: 1064


Bitcoin is antisemitic


View Profile
December 13, 2012, 08:07:54 PM
 #20

AVG does not like it:


Can I safely ignore it and go on?
Pages: [1] 2 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!