#
#
insanitycoin# your wallet in the cloud - compile and install from github sources# Create your cheap linux virtual server (VPS) in the cloud in 55seconds
# Buy 5$ droplet e.g. at digital ocean
http://tiny.cc/digocean NL USA Singapur
# You can build your insanitycoin wallet on that server.
# If your server is brand new, you need to prep it for compilation & building,
# just do everything in
posting #1 until "get the wallet source", then continue here.
# for not to run into any trouble with lack of RAM space
# during the compilation, we create a swap file:
sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile
# our old db4.8 (compiled in #1) is needed during the compilation:
export BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include"
export BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"
#
if we didn't do that we would get the error
# "db.h:14:20: fatal error: db_cxx.h: No such file or directory
# compilation terminated. make: *** [obj/db.o] Error 1#"# get the wallet source from github, compile and build,
# and copy the binary to ~/insanitycoin/insanitycoind
cd ~
git clone
https://github.com/insanitydev/insanitycoincd ~/insanitycoin/src
make -f makefile.unix
cp insanitycoind ..
# download the official config file:
mkdir ~/.insanitycoin
cd ~/.insanitycoin
wget
http://5.9.111.71/insanitycoin.conf# change the password
nano insanitycoin.conf
# to exit press
# ctrl-x
# y
# enter
cd ~
# start server
~/insanitycoin/insanitycoind
# should answer with: Insanitycoin server starting
#
most important RPC API commands to control your accounts~/insanitycoin/insanitycoind getbalance
~/insanitycoin/insanitycoind getinfo
~/insanitycoin/insanitycoind getnewaddress forDonations
~/insanitycoin/insanitycoind listtransactions forDonations
#
the full list of commands~/insanitycoin/insanitycoind help
#
If you liked this tutorial, send me some insanitycoins~/insanitycoin/insanitycoind sendtoaddress WbDnQujFmzJDxFfV97Dn1yJ75aFebLRifq 10 ThankYouForYourTutorial
# or in other currencies at
www.tiny.cc/drakointip#
