June 2018
Beginner to intermediate
236 pages
6h 39m
English
In this section, we will begin with the installation of the Namecoin blockchain:
sudo apt-get install namecoin
To configure namecoin, follow the quick start guide. Rather than creating multiple users, this tutorial will use the current user.
mkdir -p ~/.namecoin \&& echo "rpcuser=`whoami`" >> ~/.namecoin/namecoin.conf \&& echo "rpcpassword=`openssl rand -hex 30/`" >> ~/.namecoin/namecoin.conf \&& echo "rpcport=8336" >> ~/.namecoin/namecoin.conf \&& echo "daemon=1" >> ~/.namecoin/namecoin.conf
We will ...