Advertisement
dataman9

Install Litecoin Node Ubuntu Command Line Only

Dec 13th, 2017
704
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. Code Snippets
  2. *************************
  3. CODE:
  4. 1. cd ~
  5. 2. sudo apt-get install git
  6. 3. sudo apt-get install python-rrdtool python-pygame python-scipy python-twisted python-twisted-web python-imaging
  7. 4. wget https://download.litecoin.org/litecoin-0.13.2/linux/litecoin-0.13.2-x86_64-linux-gnu.tar.gz
  8. 5. tar -zxvf litecoin-0.13.2-x86_64-linux-gnu.tar.gz
  9. 6. sudo install -m 0755 -o root -g root -t /usr/local/bin ~/litecoin-0.13.2/bin/*
  10. 7. rm -rf ~/litecoin-0.13.2/ litecoin-0.13.2-x86_64-linux-gnu.tar.gz
  11. 8. cd ~
  12. 9. mkdir .litecoin
  13. 10. cd .litecoin
  14. 11. nano litecoin.conf
  15. 12. *Paste this info litecoin.conf after editing
  16.  
  17. rpcuser=nodesername
  18. rpcpassword=nodepassword
  19. txindex=1
  20. server=1
  21. daemon=1
  22. rpcbind=127.0.0.1
  23. bind=127.0.0.1
  24.  
  25. 13. ctrl+o and enter
  26. 14. ctrl+x
  27. 15. litecoind
  28. 16. *use this command to see if its downloading, then wait 6 hours for blockchain to update*
  29. litecoin-cli getinfo
  30. 17. cd ~
  31. 18. sudo git clone https://github.com/ilsawa/p2pool-ltc.git
  32. 19. cd into litecoin_scripts folder
  33. 20. sudo python setup.py install
  34. 21. sudo apt update && sudo apt upgrade
  35. 22. *edit this line*
  36. python run_p2pool.py --net litecoin --give-author 0 -f 0 -a LVyYLpB5ZW9G7a7HfYuah73ojMjggTYTk3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement