Skip to content

Instantly share code, notes, and snippets.

@mediaupstream
Last active October 12, 2020 11:49
Show Gist options
  • Save mediaupstream/5294957 to your computer and use it in GitHub Desktop.
Save mediaupstream/5294957 to your computer and use it in GitHub Desktop.
Litecoin CPU Mining setup on Ubuntu Server
#!/bin/bash
#
# Litecoin CPU Mining setup on Ubuntu Server
#
sudo apt-get update;
# install prerequisit software/libs
sudo apt-get -y install make automake build-essential libcurl4-openssl-dev htop
cd ~ && mkdir LTC && cd LTC
# download CPUminer 2.2.3
wget https://github.com/downloads/pooler/cpuminer/pooler-cpuminer-2.2.3.tar.gz
tar -zxvf pooler-cpuminer-2.2.3.tar.gz
cd cpuminer-2.2.3/
# configure and make the 'minerd' binary
./configure CFLAGS="-O3"
make
@infoburp
Copy link

infoburp commented Jan 8, 2014

Some little help/hints:

-Once installed, go to ~/LTC/cpuminer-2.2.3 and run ./minerd --help
-https://bitcointalk.org/index.php?topic=55038.0 for more info.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment