Skip to content

Instantly share code, notes, and snippets.

@witoff
Created March 17, 2013 03:35
Show Gist options
  • Save witoff/5179445 to your computer and use it in GitHub Desktop.
Save witoff/5179445 to your computer and use it in GitHub Desktop.
Add a litecoin pool miner as a low priority task to your *nix server
wget https://github.com/downloads/pooler/cpuminer/pooler-cpuminer-2.2.3-linux-x86_64.tar.gz
tar -xvzf pooler-cpuminer-2.2.3-linux-x86_64.tar.gz
# Replace USER, ID & PASS with your creds setup on http://litecoinpool.org/account
echo "nohup nice -n 20 ./minerd --url http://litecoinpool.org:9332/ --userpass USER.ID:PASS" > litecoin.sh
chmod a+x litecoin.sh
./litecoin.sh &
# Find thir process
# ps axl | grep lite
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment