比特币 区块链 一些资料

比特币官网:https://bitcoin.org/en/download

Github 源码地址:https://github.com/bitcoin/bitcoin

自行搭建比特币节点步骤:

1. Order a VPS with Debian 7 from one of the hosting services listed on lowendbox. Make sure it has 512MB 2 GB RAM and 30+ 100 GB HD.
2. Log in to your VPS Control Panel through your host’s website.
3. Boot the server.
4. Start a new session in Control Panel (or similar)
5. Mac/Linux users open Terminalv
6. In Terminal, enter command as listed on the VPS Manager page (something like ssh-console…)
7. In Terminal, enter password provided by VPS host.
8. In Terminal, enter “sudo apt-get update && apt-get upgrade” (w/o quotation marks!)
9. In Terminal, enter “sudo apt-get install git build-essential automake libboost-all-dev pkg-config”vi
10. In Terminal, to download bitcoind enter “mkdir ~/src && cd ~/src” then “git clone https://github.com/bitcoin/bitcoin” then “cd bitcoin” then “git checkout 0.x.x”
11. In Terminal, to configure bitcoind enter “cd ~/src/bitcoin” then “./autogen.sh” then “./configure –disable-wallet \ –with-cli \ –without-gui”
12. In Terminal, to compile bitcoind enter “make” then “sudo make install”
13. Enter “bitcoin-cli getinfo” to confirm that the install was completed.
14. Check your VPS control panel to ensure that your Disk Usage is increasing as a proxy for the Blockchain being downloaded.

建立一个完整的远程比特币节点指南:
1。在lowendbox列出的托管服务里,选择一个VPS Debian 7。确保它有512MB RAM和30 GB的硬盘空间。
2。通过主机网站登录到您的VPS主机控制面板。
3。启动服务器。
4。开始一个新会话控制面板(或类似的)
5。MAC和Linux用户开放terminalvi
6。在终端,输入命令对VPS管理页面上市(像SSH控制台……)
7。在终端,输入VPS主机提供的密码。
8。在终端,输入“sudo apt-get update && apt-get upgrade”(不带引号)
9。在终端,输入“sudo apt-get install git build-essential automake libboost-all-dev pkg-config“
10。在终端,下载bitcoind进入“mkdir ~ / SRC和CD ~ / src”然后“git clone https://github.com/bitcoin/bitcoin”然后“CD bitcoin”,然后“git checkout 0.x.x”
11。在终端,配置bitcoind输入“cd ~ / SRC /bitcoin“然后”。/ AutoGen.SH”然后“./configure –disable-wallet \ –with-cli \ –without-gui”
12。在终端,编译bitcoind进入“make”,然后“sudo make install”
13。“bitcoin-cli getinfo“确认安装完成。
14。检查你的VPS控制面板,以确保您的磁盘使用量为blockchain下载代理增加。

参考链接:http://www.contravex.com/2014/10/10/guide-to-setting-up-a-remote-bitcoin-node-for-20-per-year/

猜你喜欢

转载自my.oschina.net/Rayn/blog/1787716