Go-Ethereum

如何在 Ubuntu 中升級 geth 和 mist?

  • July 30, 2021

我專門設置了一台 Ubuntu 筆記型電腦來安裝 Geth/Mist 0.5.2,此後一直沒有升級。我想升級到 0.8.1 但需要一些指導。很高興在終端工作,但我沒有足夠的背景來自己做這件事。

我已經搜尋了 reddit 和 StackExchange,但還沒有看到針對絕對初學者的升級步驟。我已經從https://github.com/ethereum/mist/releases下載了 Ethereum-Wallet-linux64-0-8-1.zip但不知道我是否只需要打開錢包圖示來更新或工作命令行。我的錢包裡有我不想失去的乙太幣。我的密鑰已備份。任何幫助,將不勝感激。謝謝。

在 Ubuntu 上升級 Mist

  1. 備份您的密鑰庫 ( /.ethereum/keystore)
  2. 備份您的數據文件夾 ( /.config/Mist)
  3. 從這裡下載最新的 zip並安裝。

有關備份錢包的更多資訊,請參見此處:如何備份霧錢包?

升級go-ethereum

sudo apt-get install software-properties-common
sudo add-apt-repository -y ppa:ethereum/ethereum
sudo add-apt-repository -y ppa:ethereum/ethereum-dev
sudo apt-get update
sudo apt-get upgrade

或者只是建構 git 儲存庫。

git clone https://github.com/ethereum/go-ethereum
cd go-ethereum  # (use "git checkout <branch>" to switch to branches or tag/commit. ex: git checkout -f tags/v1.10.16)
make geth       # (to build geth binary in build/bin)
make clean      # (clean things up, if you want to build a different branch or commit)
sudo cp build/bin/geth /usr/local/bin/

引用自:https://ethereum.stackexchange.com/questions/7182