Do I still need to follow these steps?
Build leveldb:
cd src/leveldb/ && make libleveldb.a libmemenv.a && cd ..
Build miniupnpc (option, if you don't build it just use make "USE_UPNP=-" in the next step)
cd src/miniupnpc && make && cd ..
Build CrytpoBullion daemon:
make -f makefile.unix
from https://github.com/cryptogenicbonds/CryptoBullion-CBX/blob/master/doc/build-unix.md?
Because those folders are not being created.
Thanks in advance.
Try this: (EDIT: See the updated post below regarding compiling with db-4.8 for long-term 'compatibility').
- https://bitcointalksearch.org/topic/m.14974586
and
- https://bitcointalksearch.org/topic/m.14975009
git clone https://github.com/cryptogenicbonds/CryptoBullion-CBX
cd CryptoBullion-CBX
cd src
make -f makefile.unix "USE_UPNP=-"
strip cryptobulliond
Start daemon:
./cryptobulliond
Error: To use CryptoBulliond, you must set a rpcpassword in the configuration file:
/home/~/.CryptoBullion/CryptoBullion.conf
It is recommended you use the following random password:
rpcuser=cryptobullionrpc
rpcpassword=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
(you do not need to remember this password)
If the file does not exist, create it with owner-readable-only file permissions.
copy the randomly generated rpcpassword=
cd
cd ~/.CryptoBullion
sudo nano CryptoBullion.conf
cd ~/.CryptoBullion
sudo nano CryptoBullion.conf
daemon=1
server=1
rpcuser=cryptobullionrpc
rpcpassword=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
rpcallowip=127.0.0.1
Save with:
ctrl + x
cd
...
cryptobulliond (daemon) is located here:
cd CryptoBullion-CBX
cd src
Start daemon:
./cryptobulliond
./cryptobulliond getinfo
./cryptobulliond getpeerinfo
Stop daemon:
./cryptobulliond stop
etc.,