Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- gcc
- floyld
- error
- aes-128-ctr
- build:15
- catkin_make
- aes_ctr
- ros
- geth 설치 안됨
- 시스템프로그래밍
- aes-ctr
- c언어로 쉽게 풀어쓴 자료구조
- aes decrypt
- build 에러
- build:12
- gcc를 사용한 컴파일 예제
- ouster
- geth 설치 에러
- aes ctr decrypt
- studio
- aes ctr
- Linux
- gcc 실행
- c
- OS1
- ethereum
- ar과 make 사용법
- ousterstudio
- geth 설치
- LIDAR
Archives
- Today
- Total
CODERJH
ethereum geth 설치 방법 본문
Go 작업공간 없이 Geth 빌드
1. git clone https://github.com/ethereum/go-ethereum.git
2. cd go-ethereum
3. make geth ( 이때 go version == go1.18.2 or go1.9.7이상)
(현재 사용중 version은 go1.18.2
4. make geth시 에러 해결 방법
4.1 curl 이용 go 패키지 다운로드
curl -O https://dl.google.com/go/go1.18.2.linux-amd64.tar.gz
4.2 sudo apt-get install -y build-essential
4.3. tar -xzf go1.9.7.linux-amd64.tar.gz
4.4 sudo mv go /usr/local
4.5 vim ~/.profile 수정
echo 'GOPATH="/usr/local/go"'>>~/.profile
echo 'PATH="$PATH:$GOPATH/bin"'>>~/.profile
4.6 source ~/.profile
4.7 make geth 진행하면 된다.
'Ethereum Nodediscovery v5' 카테고리의 다른 글
이더리움 프라이빗 네트워크 노드 구축 (0) | 2022.11.25 |
---|---|
ubuntu wireshark 빌드 버전 설치 (0) | 2022.05.20 |