123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- ECOin - Copyright (c) - 2014/2025 - GPLv3 - epsylon@riseup.net (https://ecoin.03c8.net)
- ===================================================
- # BUILDS - P2P Crypto-Currency (ECOin) #
- ===================================================
- See doc/build-linux.txt for more info about required libs to build it at GNU/Linux systems.
- All of the commands should be executed in a shell:
- ===================================================
- =================
- + Build Makefile:
- =================
- cd ecoin/
- /usr/lib/x86_64-linux-gnu/qt5/bin/qmake USE_UPNP=- USE_IPV6=- -o Makefile ecoin-qt.pro
- ===============
- + Build Wallet:
- ===============
- qmake USE_UPNP=- USE_IPV6=-
- make
- ./ecoin-qt
-
- ===================================================
- ===============
- + Build Daemon:
- ===============
- cd src/
- make -f makefile.linux USE_UPNP=- USE_IPV6=-
- strip ecoind
- ./ecoind
-
- ===================================================
-
- ===============
- + Build Miner:
- ===============
- See doc/MINING.txt for detailed instructions on running /ecoin-miner/ on different platforms.
- cd miner/
- sh build.sh
-
- ./cpuminer
-
- ===================================================
- ==========================
- + Configuration (example):
- ==========================
- + GNU/Linux:
- - File: /home/$USER/.ecoin/ecoin.conf # chmod 600 ecoin.conf
- rpcuser=ecoinrpc
- rpcpassword=<YourEcoinRPC_PassWord2025> # use lowercase, upper case and numbers
- rpcallowip=127.0.0.1
- rpcallowip=0.0.0.0
- testnet=0
- noirc=1
- listen=1
- server=1
- daemon=1
- addnode=46.163.118.220 # ecoin.03c8.net (turina.space)
- ./ecoind -conf=/home/$USER/.ecoin/ecoin.conf
-
- ==========================
- + Debugging (logs):
- ==========================
- + GNU/Linux:
- tail -f /home/$USER/.ecoin/debug.log
- ====================
- + Ports (Listening):
- ====================
- + Default P2P Port: 7408
- + Default RPC Port (mainnet): 7474
- ===================================================
- ==========================
- + More info (commands):
- ==========================
- For a list of command-line options:
- ./ecoind --help
- To start the ECOin daemon:
- ./ecoind -daemon
- For ECOin-QT Wallet
- ./ecoin-qt
-
- For debugging:
- tail -f /home/$USER/.ecoin/debug.log
- ======================================
|