#
#
The manual works for c-notes, too.# your wallet in the cloud - compile and install from github sources# I succeeded with this on Ubuntu 12.04 and Debian 7.0 x64
# Create your cheap linux virtual server (VPS) in the cloud in 55seconds
# Buy 10$ droplet e.g. at digital ocean
http://tiny.cc/digocean NL USA Singapur
# You can build your c-note wallet on that server.
# Instructions are the same
as above, just replace all occurences of "duckduckcoin" with "c-note" (modulo capital / small letters).
# if you had rebooted after the above, you need to repeat this before compiling:
export BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include"
export BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"
# download the source c-note1.2.tar.gz from
https://bitcointalk.org/index.php?topic=397916# For c-note admin:
# It would be nice if there were a github / wget address for the source,
# for easier download in terminal only mode
# until then I use
pscp.exe from the putty.exe programmers to upload it to the droplet
# pscp.exe c-note1.2.tar.gz root@my-droplet-IP:
cd ~
tar zxf c-note1.2.tar.gz
rm c-note1.2.tar.gz
cd C-Note/src
make -f makefile.unix USE_UPNP=-
cp c-noted ..
# create a config file (copy paste all in one go):
cd ~
mkdir ~/.c-note
cat << "CONFIG" >> ~/.c-note/c-note.conf
listen=1
seednode =70.191.156.43
seednode=69.85.86.195
maxconnections =10
testnet=0
port=18491
rpcport=18490
rpcuser=cnote
rpcpassword=yoursooperdooperpasswordhighlysecure
rpcallowip=127.0.0.1
addnode=1.63.78.97:18491
addnode=125.115.70.228:18491
addnode=119.142.38.127:18491
addnode=122.4.158.172:18491
addnode=70.191.156.43:18491
addnode=183.29.166.9:18491
addnode=113.2.233.93:18491
CONFIG
# start the server
~/C-Note/c-noted &
# unfortunately, in contrast to the others above,
# this one doesn't answer "c-note server starting",
# but you can see the process running:
ps gaux | grep c-noted
# API commands are the same, see posting #0
./C-Note/c-noted getinfo
./C-Note/c-noted help
# If you like this tutorial, send me some CNOTEs:
./C-Note/c-noted sendtoaddress CN1JHBX8jnpiXCKSsqCBNo6Dp5uQAMLmdE 500 ThankYouForYourTutorial
# or in other currencies at
www.tiny.cc/drakointip#
