에러 solve
1. sudo apt update 에서의 에러
Failed to fetch http://kr.archive.ubuntu.com/ubuntu/dists/bionic/InRelease Temporary failure resolving 'kr.archive.ubuntu.com'
solve: DNS 주소 바꿔줌
- $ vi /etc/network/interfaces 를 열고
dns-nameservers 8.8.8.8 8.8.4.4 를 추가.
- $ vi /etc/resolv.conf 를 열고
nameserver 8.8.8.8
nameserver 8.8.4.4 를 추가
2. 환경변수 관련 에러
bash: export: '/home/sysadm/.bashrc': not a valid identifier
solve: source ~/.bashrc 환경 변수 적용하려는데 이렇게 떠서 구글링해보니 PATH 안의 환경변수를 띄어쓰기를 하면 안된다더라.
'Linux' 카테고리의 다른 글
Ubuntu 18.04에서 기본 인프라 설치하기 (0) | 2019.10.25 |
---|---|
Docker registry setup (0) | 2019.07.08 |
Grafana, Prometheus, node-exporter install guide (0) | 2019.07.08 |
CentOS7에 APM설치 (0) | 2018.11.05 |
Xfce Ubuntu(xUbuntu) 설치 (0) | 2018.10.27 |