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 |
Tags
- mosquitto
- mariadb 한국어
- 원격
- java collection
- com.netflix.zuul.exception.ZuulException
- Access-Control-Allow-Origin
- Hystrix Read time out
- mysql 다국어
- IOT
- message protocol
- TreeMap
- mysql 한국어
- mqtt
- HashMap
- #spring boot admin
- com.netflix.zuul.exception.ZuulException: Hystrix Readed time out
- #spring boot
- #actuator
- #MSA
- 크로스도메인
- Set
- backtracking
- mstsc
- ArrayList
- db utf8
- emqx
- cors
- mariadb 다국어
- CORS policy: No 'Access-Control-Allow-Origin'
- xrdp
Archives
- Today
- Total
miin29na
[ubuntu설정] apt-get 저장소 에러 'kr.archive.ubuntu.com'의 주소를 알아낼 수 없습니다.' 본문
IT/linux
[ubuntu설정] apt-get 저장소 에러 'kr.archive.ubuntu.com'의 주소를 알아낼 수 없습니다.'
miin29na 2018. 11. 16. 17:10ubuntu version 18.04
$sudo apt-get update 수행 시, 'kr.archive.ubuntu.com'의 주소를 알아낼 수 없습니다.' 오류가 발생한다.
검색 해보니 해결방법이 여럿 있다.
- 저장소 서버 변경 (kr.archive.ubuntu.com -> ftp.daumkakao.com)
$cd /etc/apt/
$sudo vi sources.list
:%s/kr.archive.ubuntu.com/ftp.daumkakao.com
하지만 나는 안되서, 다시 서치해 본 결과 고정 IP 로 변경 하고 나서 DNS 서버 설정을 안한것이 원인이였다
.
$sudo vi /etc/network/interfaces
iface eth0 inet static
...
dns-nameservers xx.xx.xx.xx <- 이부분을 추가한다.
재부팅 하거나 인터넷을 재시작한다.