INSTALL 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. ECOin - Copyright (c) - 2014/2024 - GPLv3 - epsylon@riseup.net (https://03c8.net)
  2. ===================================================
  3. # BUILDS - ECOlogical P2P Crypto-Currency (ECOin) #
  4. ===================================================
  5. =================
  6. + Build Makefile:
  7. =================
  8. cd ecoin/
  9. + GNU/Linux:
  10. /usr/lib/x86_64-linux-gnu/qt5/bin/qmake USE_UPNP=- USE_IPV6=- -o Makefile ecoin-qt.pro
  11. ================
  12. + Build leveldb:
  13. ================
  14. cd src/leveldb
  15. + GNU/Linux:
  16. TARGET_OS=Linux make libleveldb.a libmemenv.a
  17. + MacOS X:
  18. TARGET_OS=Darwin make libleveldb.a libmemenv.a
  19. + Windows:
  20. TARGET_OS=NATIVE_WINDOWS make libleveldb.a libmemenv.a
  21. ===================================================
  22. ===============
  23. + Build Wallet:
  24. ===============
  25. See doc/build-*.txt for detailed instructions on building /ecoin-qt/ on different platforms.
  26. + GNU/Linux:
  27. qmake USE_UPNP=- USE_IPV6=-
  28. make
  29. ./ecoin-qt
  30. ===============
  31. + Build Daemon:
  32. ===============
  33. See doc/build-*.txt for detailed instructions on building /ecoind/ on different platforms.
  34. + GNU/Linux:
  35. cd src/
  36. make -f makefile.linux USE_UPNP=- USE_IPV6=-
  37. strip ecoind
  38. ./ecoind
  39. ===============
  40. + Build Miner:
  41. ===============
  42. See doc/MINING.txt for detailed instructions on running /ecoin-miner/ on different platforms.
  43. + GNU/Linux:
  44. cd miner/
  45. sh build.sh
  46. ./cpuminer
  47. ==========================
  48. + Configuration (Example):
  49. ==========================
  50. + GNU/Linux:
  51. - File: /home/$USER/.ecoin/ecoin.conf # chmod 600 ecoin.conf
  52. rpcuser=ecoinrpc
  53. rpcpassword=<YourPassWord2024> # use lowercase, upper case and numbers
  54. rpcallowip=127.0.0.1
  55. testnet=0
  56. noirc=1
  57. listen=1
  58. server=1
  59. daemon=1
  60. addnode = 46.163.118.220 # 03c8.net (turina.space)
  61. ./ecoind -conf=/home/$USER/.ecoin/ecoin.conf
  62. ====================
  63. + Ports (Listening):
  64. ====================
  65. + Default P2P Port: 7408
  66. + Default RPC Port (mainnet): 7474
  67. ===================================================