I've run into another issue I've run into nowhere else.
When running blakebitcoind I get the following:
Error: Unable to bind to 0.0.0.0:356 on this computer (bind returned error 13, Permission denied)
Error: Failed to listen on any port. Use -listen=0 if you want this.
For giggles I try -listen=0 and get the following:
An error occurred while setting up the RPC port 243 for listening on IPv4: bind: Permission denied
Then get the unable to bind on 0.0.0.0:356 bind error above once again.
you need the make file for level db
you can get it here if you don't have it
https://github.com/photonproject/photon/blob/master/src/leveldb/Makefilecd /leveldb
sudo make libleveldb.a libmemenv.a
then compile the coin as normal on linux
Trying to compile from source from git repo and get the following error:
~/BlakeBitcoin/src $ make -f makefile.unix
Building LevelDB ...
make[1]: Entering directory `/BlakeBitcoin/src/leveldb'
make[1]: *** No rule to make target `libleveldb.a'. Stop.
make[1]: Leaving directory `/BlakeBitcoin/src/leveldb'
make: *** [leveldb/libleveldb.a] Error 2
I've dealt with this once before with another coin by simply copying these files from another coin's source but would be interested in finding out why this happens.