區域鏈環境搭建

2021-10-18 13:05:32 字數 1034 閱讀 3709

tar -c /usr/local -xzf go1.15.7.linux-amd64.tar.gz
將 /usr/local/go/bin 目錄新增至path環境變數:

export path=$path:/usr/local/go/bin
安裝擴充套件庫

yum install  bzip2  gcc-c++ ntp epel-release nodejs cmake -y
安裝golang

yum install -y golang
驗證是否安裝成功,終端輸入如下命令,會顯示當前系統go的版本
go version
依次輸入如下命令:

mkdir -p /data/go-ethereum

cd /data/go-ethereum

wget

tar zxvfm geth-linux-amd64-1.9.9-01744997.tar.gz

mkdir -p /etc/profile.d/go-ethereum

cd geth-linux-amd64-1.9.9-01744997

cp geth /etc/profile.d/go-ethereum/

chmod +x geth

echo

'path=$path:/etc/profile.d/go-ethereum/'

>> /etc/profile

source /etc/profile

輸入如下命令,顯示結果如下,表示安裝成功

geth --help

區塊鏈環境搭建

1.fisco bcos區塊鏈操作手冊 一定要先看配置要求!區塊鏈技術 智慧型合約入門 2.推薦使用centos系統,我之前使用ubuntu 16.04出錯較多,因為部分檔案的版本較低,更新後還需要更換路徑 系統映象檔案 個人更傾向於虛擬機器,便於切換和搜尋資訊 3.centos在配置的過程中,需要...

區塊鏈環境搭建 錯誤筆記

e 無法獲得鎖 var lib dpkg lock frontend open 11 資源暫時不可用 e unable to acquire the dpkg frontend lock var lib dpkg lock frontend is another process using it?解...

交叉編譯鏈環境配置

1 自己製作 arm linux gcc 3.4.5 glibc 2.3.6.tar解壓後在其bin目錄下有arm linux gcc arm linux ld arm linux objcopy等執行檔案,解壓後,將路徑新增至環境變數。使用arm linux gcc v檢查安裝效果。報錯 bash...