Node Build
This install works for Ubuntu 16.04, 18.04 (see Linux-on-Windows despository) & This install also works on MintLinux 19
- Login as the desired user (not root) make sure the user has sudo privileges. You can run this command to make sure user is sudo.
sudo usermod -aG sudo username
Get updates via:
sudo apt-get update
sudo apt-get upgrade
- Make sure you have dependencies:
sudo apt-get install -y build-essential python-dev gcc g++ git cmake libboost-all-dev
- Recommend nano for editing:
sudo apt-get install nano
- Make sure you have GIT:
sudo apt-get install git
- Git the package
git clone https://github.com/hashratez/everycash.git
- A new directory will be created for you install "everycash"
cd everycash
mkdir build
cd build
cmake ..
make
(this process can take several minutes--be patient!)
-
Open ports on your firewall (if you don't have one ufw is great) P2P Port: 18111 RPC Port: 18112
-
Start Everycash by navigating to directory:
cd ~/everycash/build/src
Start the daemon:
./EveryCashd
(to run in the background or to keep running upon terminal exit use:
nohup ./EveryCashd &
- Create new wallet & address
cd ~/everycash/build/scr
./zedwallet
(follow the simple instructions--make sure save your KEYS AND NEUMONIC SEED!)
- Start mining to your new address
cd ~/everycash/build/scr
./miner --threads 1 --log-level 3 --address YOUR-WALLET-ADDRESS-HERE
Wallet address alaways starts with "ever" and looks something like this: everhaGXNwWPnekKav3DN11qUrqYDaNyrWNHHBBFi8w1jmYbVneog4z4jKI$f@GNh7ck9oR5PJwfjjWL7gStb3fZNX3g7kaqIIk2
....
MUCH MORE TO FOLLOW ON GUI WALLET ETC.... More info on CLI Wallet: https://github.com/turtlecoin/turtlecoin/wiki/Using-Zedwallet
// Copyright (c) 2012-2017, The CryptoNote developers, The Bytecoin developers
// Copyright (c) 2014-2018, The Monero Project
// Copyright (c) 2018, The TurtleCoin Developers
//
// Please see the included LICENSE file for more information.