Skip to content

Instantly share code, notes, and snippets.

@ksjgh
Created March 6, 2018 00:07
Show Gist options
  • Select an option

  • Save ksjgh/cd11c71a326811178a4cee21f96b092e to your computer and use it in GitHub Desktop.

Select an option

Save ksjgh/cd11c71a326811178a4cee21f96b092e to your computer and use it in GitHub Desktop.
fail to fetch error , archive server change
- change archive server , to kr.archive.ubuntu --> ftp.daumkakao
- nameserver change - did but no effect
http://let-me-know.tistory.com/6
해결 방법은
$ sudo vim /etc/resolvconf/resolv.conf.d/base
Then put your nameserver list in like so:
nameserver 8.8.8.8
nameserver 8.8.4.4
Finally update resolvconf:
$ sudo resolvconf -u
이렇게 하면 해결이 된다.
resolvconf를 업데이트 하면 아까 /etc/resolv.conf파일이 아래처럼 자동으로 갱신된다.
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 8.8.8.8
nameserver 8.8.4.4
출처: http://let-me-know.tistory.com/6 [갈팡질팡 임베디드 삽질기]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment