본문 바로가기

Ubuntu

(4)
vim-solidity 편집기 사용하기 - 0. 원본 사이트 https://github.com/tomlion/vim-solidity - 1. vim-solidity 설치 방법 Pathogen과 플러그인 관리자가 깔려있다고 가정. (Pathogen이 뭐죠? 어떻게 깔아요? 설치방법 링크) 1.1. vim-solidity 다운로드 $ git clone https://github.com/tomlion/vim-solidity.git ~/.vim/bundle/vim-solidity 1.2. ~/.vimrc에 추가 $ vi ~/.vimrc Plugin 'tomlion/vim-solidity' # 아무데나 추가할 것 1.3. 플러그인 설치 $ vim :PluginInstall - 2. 결과 - 3. 20200211 기준 잘 실행 된다.
vim 패키지(플러그인) 관리자 설치 - 0. 원본 주소 https://github.com/socialpercon/getting-start-golang/blob/master/docs/vim-go.md 없어질까봐 가져와서 박제함 20200211 실행 잘 됨. - 1. pathogen 설치 $ mkdir -p ~/.vim/autoload $ mkdir -p ~/.vim/bundle $ cd ~/.vim/autoload $ git clone https://github.com/tpope/vim-pathogen.git $ cp -v ./vim-pathogen/autoload/pathogen.vim ./ - 2. pathogen 환경 설정 $ vi ~/.vimrc execute pathogen#infect() filetype plugin indent ..
GMP-6.1.2 설치 - 0. 사이트 다운로드 사이트 : https://gmplib.org/ 참고문서(6.1.2) : https://gmplib.org/gmp-man-6.1.2.pdf - 1. 설치하기 wget https://gmplib.org/download/gmp/gmp-6.1.2.tar.lz wget이용해서 설치, 압축풀기. *참고 lz는 쓰려면 lzip를 다운받아야함.. sudo apt-get install lzip lzip -d [파일명].tar.lz tar xf [파일명].tar lz깔기 귀찮으면 그냥 UI에서 압축 풀면 됨. ./configure 올르바게 설치가 되면 다음과 같은 그림이 나온다. 이 화면이 안뜰 경우, 설치가 안된 것이며 필요한 것들이 안깔려있기 때문일 것임. sudo apt-get install..
1. Git에서 go-ethereum 받아와서 사설 체인 환경 설정하기 - 0. golang 설치 링크 원본분 진짜 감사합니다ㅠㅠㅠㅠㅠㅠㅠㅠ 멘탈 터져서 삼십분 헤매던거 해결해주시뮤ㅠㅠㅠㅠㅠ $ sudo apt-get install golang-go $ sudo add-apt-repository ppa:longsleep/golang-backports $ sudo apt-get update $ sudo apt-get install golang-go $ go version go version go1.13 linux/amd64 - 1. go-ethereum 소스 설치 $ git clone https://github.com/ethereum/go-ethereum Cloning into 'go-ethereum'... remote: Enumerating objects: 12, done...