區塊鏈BTC98比特幣Bitcoin原始碼安裝編譯
在這兒主要介紹Linux下的比特幣Bitcoin安裝,我們選擇ubuntu 12.04的環境,安裝相對容易得多。Windows下並不推薦,因為基於mingW配置相以繁瑣。
同時也可以參考build官方文件。
先拉下原始碼:
安裝Berkeley DB 4.8以上版本:
sudo apt-get install libdb5.1++-dev
然後進入到相關目錄:
cd bitcoin
./autogen.sh./configure
如果你遇到這樣的提示:configure: error: Found Berkeley DB other than 4.8, required for portable wallets 那就可以這樣:
./configure --with-incompatible-bdb
如查遇到到這樣的提示:checking for boostlib >= 1.20.0… configure: We could not detect the boost libraries (version 1.20 or higher). 那這樣:
sudo apt-get install libboost-all-dev
然後再次configure,如果你需要bitcoin-qt前端,那需要安裝
sudo apt-get install libqt4-core libqt4-gui libqt4-dev
再次configure,這次可以了
make
開始編譯,大約5分鐘,然後安裝編譯好的二進位制檔案
make install
想執行前端那執行
bitcoin-qt
服務端是
bitcoind -server –printtoconcole
接到下,是否挖礦就看您自己了。以當前時間為起點,連線testnet有9G的blockchain資料需要下載,livesite有35G的資料需要下載。
也可以從這裡下載檔案,以加快速度。後續會介紹關於比特幣的更多內容。有興趣可以閱讀它的原始碼。
資料LINK:
BitCoin比特幣 wiki
Bitcoin比特幣 原始碼文件
Bitcoin比特幣 中國