1.安装geth(在线安装)
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum
当新版本的geth发布后,可以直接通过APT完成geth版本升级。
sudo apt-get update
Sudo apt-get upgrade
2.运行以太坊
使用geth客户端前必须先同步区块,同步的目的是把网络上的区块全部下载到本地,亦同步到网络的最新状态。在同步数据的时候可以指定-datadir参数设置区块数据存放位置,–fast启动快速区块同步模式,再同步到最新区块后,转化为正常区块同步模式。
1)在以太坊公有链上运行一个全节点
geth –fast -cache=512 –datadir “your path” console