Zihao

Make small but daily progress

0%

比特币Bitcoin源代码安装编译

比特币 (货币符号: ฿;英文名:Bitcoin;英文缩写: BTC),是一种用于开源的P2P软件而产生的电子货币。

在这儿主要介绍Linux下的比特币Bitcoin安装,我们选择ubuntu 12.04的环境,安装相对容易得多。Windows下并不推荐,因为基于mingW配置相以繁琐。

同时也可以参考官方build文档。

先拉下源代码:

1
git clone https://github.com/bitcoin/bitcoin.git

安装Berkeley DB 4.8以上版本:

1
sudo apt-get install libdb5.1++-dev

然后进入到相关目录:

1
2
3
cd bitcoin

./autogen.sh./configure

如果你遇到这样的提示:configure: error: Found Berkeley DB other than 4.8, required for portable wallets 那就可以这样:

1
./configure –with-incompatible-bdb

如查遇到到这样的提示:checking for boostlib >= 1.20.0… configure: We could not detect the boost libraries (version 1.20 or higher). 那这样:

1
sudo apt-get install libboost-all-dev

然后再次configure,如果你需要bitcoin-qt前端,那需要安装

1
sudo apt-get install libqt4-core libqt4-gui libqt4-dev

再次configure,这次可以了

1
make

开始编译,大约5分钟,然后安装编译好的二进制文件

1
make install

想运行前端那执行

1
bitcoin-qt

服务端是

1
bitcoind  -server –printtoconcole

接到下,是否挖矿就看您自己了。以当前时间为起点,连接testnet有9G的blockchain数据需要下载,livesite有35G的数据需要下载。
也可以从这里下载文件,以加快速度。后续会介绍关于比特币的更多内容。有兴趣可以阅读它的源代码。

资料LINK:

  • BitCoin比特币 wiki

  • Bitcoin比特币 源代码文档

  • Bitcoin比特币 源代码git地址

欢迎关注我的其它发布渠道