Ok so using doublec version of Devcoin from the github here
https://github.com/doublec/devcoinAssuming u have git installed on Ubuntu use the command in the terminal:
git clone https://github.com/doublec/devcoin.git
Once the download has finished change directory into the src folder:
cd ./devcoin/src
I got a few error message during installing as i did not have curl installed and a few other dependencies, so install the following using the commands:
sudo apt-get install libcurl4-openssl-dev
sudo apt-get install libglib2.0-dev libglibmm-2.4-dev
You may need to run the following line in the terminal for some other dependencies (I did not do this as I had already installed them when building the bitcoin client)
sudo apt-get install libboost-all-dev libdb-dev libdb++-dev libminiupnpc-dev libwxgtk2.8-dev
Now just compile in the terminal using the makefile command, I did the compile without UPNP activated
make -f makefile.unix USE_UPNP=1 devcoind
You have now created the devcoind.exe which you can start by typing
./devcoind
You will need to set a username and password in the config file located in your home directory .devcoin (this directory may be hidden) so open that directory and set a username and passwords. I had to create a file which i called devcoin.conf and is identical to the bitcoin conf i have for this test purpose, though i changed port to 6333.
I also had to create a folder called "receiver" in the .devcoin folder and downloaded the receiver_0.csv to receiver_20.csv files to the .devcoin/receiver directory from here
http://92.105.105.155/devcoin/ (thank you for the link Icoin)
Restart the devcoin server again and this time it should start downloading the blockchain,
and boom that's it
open another terminal and cd into the src directory again..
cd ./devcoin/src
or right click in the terminal and open new tab (opens in same directory
)
now run various commands against the devcoind such as:
./devcoind getinfo
./devcoind help
if all is well u will get a readout from getinfo command something like:
{
"version" : 32501,
"balance" : 0.00000000,
"blocks" : 8966,
"connections" : 5,
"proxy" : "",
"generate" : false,
"genproclimit" : -1,
"difficulty" : 92.94920663,
"hashespersec" : 0,
"testnet" : false,
"keypoololdest" : 1363646484,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"errors" : ""
}
so yup that's it hope this was helpful feel free to ask any questions and all tips / donations are very much appreciated