2
I've tried my best to follow the installation instructions for a headless Debian server found on github.com/bitcoin and bitcoin.org/en/full-node. However, I can not figure out if everything installed correctly. I don't know the right sanity checks.
To install bitcoind I used wget to download the 0.11.2 tar/zip file from bitcoin.org. I installed all the dependencies through apt-get listed on github. I used wget to download Berkeley DB4.8 and used "make install" to presumably install db4.8. Finally, I used "sudo install" to add the bitcoind binary to "/usr/local/bin".
I can run bitcoind and interact with it using bitcoin-cli. However, how can I determine if the installation is truly a success? How can I verify that bitcoind is using Berkeley DB4.8? I have a suspicion something is off, because I could not find the bitcoin root. This instruction from github baffles me:
cd $BITCOIN_ROOT
./autogen.sh
./configure LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/" # (other args...)
I cannot use autogen.sh, because I cannot find it. Where is the $BITCOIN_ROOT? Where is the configure file? I cannot find this either. I am afraid to use the wallet and lose BTC.
I think part of my confusion stems from the apparent existence of two ways to install bitcoind. One way is the approach I took, which was to wget the bitcoind from the bitcoin website. Another approach is to use git. If I use git, then it seems I will have the autogen.sh and configure files. – wherestheforce – 2016-02-18T05:48:36.577
My node is recognized by the website bitnodes.21.co – wherestheforce – 2016-02-18T05:49:19.320
I now understand why I was confused. I followed the instructions for installation from bitcoin.org, but then tried to verify this installation by following the instructions from github. The source code is not included in the bitcoin.org download, so that explains why I couldn't find any of the files referenced in the github instructions. – wherestheforce – 2016-02-18T07:08:52.990