Post
Topic
Board Beginners & Help
Re: Thumbs down to the chncoin linux clients.
by
jwatchachang
on 07/05/2013, 17:58:16 UTC
This post is a bit old but I was able to complie the chncoind from github.
Hopefully this will help other noobs.

Ubuntu 11.10
Code:
cd ~
git clone https://github.com/CHNCoin/CHNCoin.git
cd ~/CHNCoin/src
The obj directory was missing in the src folder. To create it:
Code:
mkdir ./obj
I had to install libminiupnpc-dev
Code:
sudo apt-get install libminiupnpc-dev
Make clean and make the chncoind
Code:
make -f makefile.unix clean
make -f makefile.unix
Afterwards, you can move the chncoind to where you like. I kept mine in the src directory.
Create your chncoin.conf in ~/.chncoin/chncoin.conf
Code:
rpcuser=username
rpcpassword=password
rpcallowip=127.0.0.1
rcpallowip=192.168.1.*
rpcport=8108
port=8106
daemon=1
server=1
gen=0
Fire up chncoind
Code:
jw@jw-dev:~/CHNCoin/src$ ./chncoind
jw@jw-dev:~/CHNCoin/src$ CHNCoin server starting
Wait about 30mins
Code:
./chncoind getblockcount
Make sure the block count matches the current block
Code:
http://cnc.strament.com/
And you're read to start mining.