INSTALL 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. ECOin - Copyright (c) - 2014/2025 - GPLv3 - epsylon@riseup.net (https://ecoin.03c8.net)
  2. ===================================================
  3. # BUILDS - P2P Crypto-Currency (ECOin) #
  4. ===================================================
  5. See doc/build-linux.txt for more info about required libs to build it at GNU/Linux systems.
  6. All of the commands should be executed in a shell:
  7. ===================================================
  8. =================
  9. + Build Makefile:
  10. =================
  11. cd ecoin/
  12. /usr/lib/x86_64-linux-gnu/qt5/bin/qmake USE_UPNP=- USE_IPV6=- -o Makefile ecoin-qt.pro
  13. ===============
  14. + Build Wallet:
  15. ===============
  16. qmake USE_UPNP=- USE_IPV6=-
  17. make
  18. ./ecoin-qt
  19. ===================================================
  20. ===============
  21. + Build Daemon:
  22. ===============
  23. cd src/
  24. make -f makefile.linux USE_UPNP=- USE_IPV6=-
  25. strip ecoind
  26. ./ecoind
  27. ===================================================
  28. ===============
  29. + Build Miner:
  30. ===============
  31. See doc/MINING.txt for detailed instructions on running /ecoin-miner/ on different platforms.
  32. cd miner/
  33. sh build.sh
  34. ./cpuminer
  35. ===================================================
  36. ==========================
  37. + Configuration (example):
  38. ==========================
  39. + GNU/Linux:
  40. - File: /home/$USER/.ecoin/ecoin.conf # chmod 600 ecoin.conf
  41. rpcuser=ecoinrpc
  42. rpcpassword=<YourEcoinRPC_PassWord2025> # use lowercase, upper case and numbers
  43. rpcallowip=127.0.0.1
  44. rpcallowip=0.0.0.0
  45. testnet=0
  46. noirc=1
  47. listen=1
  48. server=1
  49. daemon=1
  50. addnode=46.163.118.220 # ecoin.03c8.net (turina.space)
  51. ./ecoind -conf=/home/$USER/.ecoin/ecoin.conf
  52. ==========================
  53. + Debugging (logs):
  54. ==========================
  55. + GNU/Linux:
  56. tail -f /home/$USER/.ecoin/debug.log
  57. ====================
  58. + Ports (Listening):
  59. ====================
  60. + Default P2P Port: 7408
  61. + Default RPC Port (mainnet): 7474
  62. ===================================================
  63. ==========================
  64. + More info (commands):
  65. ==========================
  66. For a list of command-line options:
  67. ./ecoind --help
  68. To start the ECOin daemon:
  69. ./ecoind -daemon
  70. For ECOin-QT Wallet
  71. ./ecoin-qt
  72. For debugging:
  73. tail -f /home/$USER/.ecoin/debug.log
  74. ======================================