Last active
October 12, 2020 11:49
-
-
Save mediaupstream/5294957 to your computer and use it in GitHub Desktop.
Litecoin CPU Mining setup on Ubuntu Server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.