Noob's guide to install on Xubuntu 12.04 & 13.10
-----------------------------------------------------------------------------------
Anoncoind
-----------------------------------------------------------------------------------
1) Download Xubuntu 12.04 or 13.10 Desktop (
http://xubuntu.org/getxubuntu/)
2) Download Universal-USB-Installer and create a bootable xubuntu USB with 4gb home folder as explained here :
http://www.bluewhaleseo.com/blog/bootable-xubuntu-linux-os-usb-flash-drive-improve-productivity-mobility/2b) or alternativelly install xubuntu on the hard drive following any tutorial
3) Restart and boot on Xubuntu:
4) when arrived on desktop : [super]+T to open terminal ([super] = [win] touch on the keyboard)
5) In the windows that open type these to update the system, and install required tools.
$ sudo apt-get update
$ sudo apt-get upgrade
6) Restart computer if prompted then go back in the terminal and type
$ sudo apt-get install libqtgui4 qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev git
7) Next, get the anoncoin source code from git. Type in terminal
$ git clone
https://github.com/Anoncoin/anoncoin.git Now that you got the source. Navigate to the src directory and begin the compilation.
$ cd anoncoin/src/
9) Type this in terminal:
$ make -f makefile.unix USE_UPNP=-
9b) If it doesn't work because g++ is not found (because you use a xubuntu USB in place of an install) type:
$ sudo apt-get install g++
...then go back to 9) and reexecute make
9c) If it doesn't work because there is problem detecting the boost library, type this:
$ sudo apt-get install build-essential libboost-all-dev libcurl4-openssl-dev libdb4.8-dev libdb4.8++-dev
10) When it completes you should have a binary file named anoncoind in the folder ($ dir). Copy this somewhere to make it executable for every user on the system.
$ sudo cp anoncoind /usr/bin/anoncoind
11) You should now be ready to run anoncoind as soon as you have a configuration file in place. You will get instructions when running anoncoind.
$ anoncoind
12) To edit anoncoin.conf :
$ nano ~/.anoncoin/anoncoin.conf
rpcuser=**your username**
rpcpassword=**your password**
daemon=1
server=1
save and close, run anoncoind, command line stop to stop, help for help
For those who does not like command line program CLI, you shall install anoncoin-QT to get a GUI
-----------------------------------------------------------------------------------
Anoncoin-QT:
-----------------------------------------------------------------------------------
0) At first, stop anoncoind
$ anoncoind stop
1) Type this
$ sudo apt-add-repository ppa:bitcoin/bitcoin -y
$ sudo apt-get update
$ sudo apt-get build-dep bitcoin -y
2) Change directory to where the Git-Hub got cloned (see step 6+7 of install of anoncoind)
$ cd ~/anoncoin
3) Compile Anoncoin-QT
$ qmake "USE_BOOST_46=1"
$ make
4) When it completes you should have a binary file named anoncoin-qt in the folder ($ dir). Copy this somewhere to make it executable for every user on the system.
$ sudo cp anoncoin-qt /usr/local/bin
5) After that you can execute anoncoin-qt but stop anoncoind first
$ anoncoind stop
$ anoncoin-qt
6) If there is an error 22DbRunRecoveryException, and IF THERE IS NO COIN IN WALLET.DAT
stop anoncoin-qt and do this: $ rm ~/.anoncoin/wallet.dat
and this also: $ rm -R ~/.anoncoin/blk* ~/.anoncoin/__db* ~/.anoncoin/database
after this it should work
================================================================
-----------------------------------------------------------------------------------
TRY THIS FIRST - EASIEST MANNER:
-----------------------------------------------------------------------------------
$ sudo apt-add-repository ppa:bitcoin/bitcoin -y
$ sudo apt-get update
$ sudo apt-get upgrade
$ sudo apt-get build-dep bitcoin -y
$ sudo apt-get install git
$ git clone
https://github.com/Anoncoin/anoncoin.git$ cd anoncoin/src/
$ make -f makefile.unix USE_UPNP=-
$ sudo cp anoncoind /usr/bin/anoncoind
$ anoncoind
12) To edit anoncoin.conf :
$ nano ~/.anoncoin/anoncoin.conf
rpcuser=**your username**
rpcpassword=**your password**
daemon=1
server=1
qt:
$ cd ~/anoncoin
$ qmake "USE_BOOST_46=1"
$ make
$ sudo cp anoncoin-qt /usr/local/bin
$ anoncoin-qt