보관함

azure ubuntu 설치 ver 2022

TimeZone Setting ls -l /etc/localtime cd /etc sudo rm -rf localtime sudo ln -s /usr/share/zoneinfo/Asia/Seoul localtime # time changed UTC -> KST date package update sudo apt update sudo apt upgrade do-release-upgrade sudo apt autoclean sudo apt autoremove Util Install & Setting # install Utils sudo apt install build-essential sudo apt install net-tools colordiff […]

ubuntu openvpn client 구성

openvpn 설치

sudo apt install openvpn

서버에서 ca.crt, ta.key, client.conf, client.ovpn, client.crt, client.key 파일을 준비

위 파일들을 /etc/openvpn으로 복사

/etc/default/openvpn 파일 수정

AUTOSTART=”all”

다음 명령으로 서비스 등록, 시작

sudo systemctl enable [email protected] sudo systemctl daemon-reload sudo service openvpn@client start

[…]

ethereum geth

환경 Ubuntu 20.04 설치 소스를 받아서 빌드하는 방법도 있겠지만 간편하게 시스템을 운영하기 위해 apt를 사용하는 방식으로 설치 sudo apt install ethereum 개발 환경 구성 genesis.json 구성 : 특별히 eiplxxblock 부분은 ethereum이 발전되어 가면서 계속 항목이 추가 되는 것 같다. 만약 이 글을 보고 그 후에 돌리려 하는데 제대로 안 도는 경우 새로 생성된 부분이 […]