一昭抒,安裝
1,快速安裝
添加以太坊官方APT源品抽,并安裝以太坊客戶端
sudo apt-get install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install ethereum
當(dāng)新版本geth發(fā)表后,可直接通過APT完成geth版本升級
sudo apt-get update
sudp apt-get upgrade
2,源碼編譯安裝
從github上獲取go-ethereum源碼较锡,然后編譯geth
git clone https://github.com/ethereum/go-ethereum.git
cd go-ethereum
make geth
二,運行
在以太坊公有鏈上運行一個全節(jié)點
geth --fast --cache=512 --datadir "/home/zhujiantao/eth/net" console
在以太坊測試網(wǎng)絡(luò)上運行一個全節(jié)點
geth --testnet --fast --cache=512 --datadir "/home/zhujiantao/eth/testnet" console