라즈베리 파이에 라즈비안 설치 후 사용을 하는데 apt-get update, upgarde 등의 명령어가 정상 수행을 하지 못했다.
repository 가 잘못 인 것 같아서 아래 홈페이지의 내용을 수행해 주었다.
https://www.raspbian.org/RaspbianRepository
/etc/apt/sources.list
deb http://archive.raspbian.org/raspbian wheezy main contrib non-free deb-src http://archive.raspbian.org/raspbian wheezy main contrib non-free
wget https://archive.raspbian.org/raspbian.public.key -O - | sudo apt-key add -
그런데 wget 명령어가 정상 수행 되지 않았다. (위 주소를 못찾는 듯 했다.)
그래서 열심히 검색을 하여 DNS 세팅이 잘못 되었다는 것을 알고 아래 내용을 추가해 주었다.
/etc/resolv.conf
nameserver 168.126.63.1
168.126.63.1 은 KT 에서 제공하는 DNS 이다.
기존에 세팅 할 때 8.8.8.8 로 해주었는데 이게 문제가 됐었나 보다.
'Dev' 카테고리의 다른 글
[postgresql] ERROR: character with byte sequence 0xea 0xb0 0x9c in encoding "UTF8" has no equivalent in encoding "LATIN1" (0) | 2017.04.17 |
---|---|
[postgresql] ERROR: invalid byte sequence for encoding "UTF8": 0xbc (0) | 2017.04.17 |
ssh 서버에서 특정 사용자만 허용 하기 (0) | 2017.03.29 |
vsftpd 설정 (0) | 2017.03.15 |
centos 로컬 시간 설정하기 (0) | 2017.01.17 |