Post
Topic
Board Announcements (Altcoins)
Re: [KGC] The future is krugercoin and the future is now! [Official Launch]
by
hamburger
on 29/10/2018, 16:39:31 UTC
I get errors when trying to compile the linux wallet. Can you assist with a quick tutorial?

I'm using ubuntu 16.04.

Rather use 14.04 - (required to cross compile Windows Binaries) 16.05 will give you a boost and gmp error unless you install the correct versions

In 14.04

Create a shell file - install.sh

Copy and paste
Code:
#!/bin/bash

apt-get update
 
apt-get install -y autotools-dev automake build-essential bsdmainutils git libboost-all-dev libtool libssl-dev libevent-dev pkg-config software-properties-common

add-apt-repository ppa:bitcoin/bitcoin
 
apt-get update
 
apt-get install -y libdb4.8-dev libdb4.8++-dev

cd ~
 
git clone https://github.com/coinerd/krugercoin krugercoin

find . -type f -print0 | xargs -0 sed -i 's/bitcoin.conf/krugercoin.conf/g'
 
cd krugercoin
 
./autogen.sh

./configure
 
make

make install

At the command prompt, type
Code:
bash install.sh

To start krugercoind for the first time, type
Code:
krugercoind -server -daemon

It will create the .krugercoin folder

Now add a krugercoin.conf file to the .krugercoin folder
Code:
# JSON-RPC options (for controlling a running Krugercoin/krugercoind process)
server=1
listen=1
rpcuser=rpcuser===
rpcpassword=rpcpassword====
rpcport=8772
addnode=144.202.35.253:8771
addnode=212.73.150.118:9333
addnode=38.79.70.254:8771
addnode=47.52.167.147:7088
addnode=63.247.147.166:12127
addnode=70.169.221.184:8771

To start krugercoind for real, type
Code:
krugercoind -server -daemon

After a while, type
Code:
watch krugercoind-cli getblockcount

Press Ctrl + c to exit to terminal