区块链开发:(1)Ubuntu 搭建以太坊客户端geth

geth是以太坊的官方客户端,它是一个命令行工具,提供很多命令和选项,可以运行以太坊节点、创建和管理账户、发送交易、挖矿、部署智能合约等

1.安装Ubuntu虚拟机。
  官网下载地址: http://www.ubuntu.com
 如下图,选择Alternative downloads,向下拉到BitTorrent页,下载种子后,用迅雷下载ios镜像,最后用VMWare 安装镜像。
     区块链开发:(1)Ubuntu 搭建以太坊客户端geth_第1张图片

区块链开发:(1)Ubuntu 搭建以太坊客户端geth_第2张图片
参考:http://blog.csdn.net/wumumang/article/details/54099997

2.在Ubuntu上安装go-ethereum客户端:

Installing from PPA

sudo apt-get install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum
参考:https://github.com/ethereum/go-ethereum/wiki/Installation-Instructions-for-Ubuntu#installing-from-ppa

3.查看geth是否安装完成:
      geth  --help


你可能感兴趣的:(区块链)