강좌 & 팁
글 수 2,412
2016.02.04 10:10:09 (*.39.166.169)
71695
안녕하세요. 송기석입니다.
곧 설날이 옵니다. 새해 복 많이 받으세요.
오늘은 apt-get update 시 에러 발생을 해결하는 방법을 올립니다.
검색을 해보시면 우분투 apt-get update 안될 때 글이 있지만 GUI 환경에서 설정하는 방법입니다.
다음과 같은 메시지를 보게 된다면
W: Failed to fetch http://kr.archive.ubuntu.com/ubuntu/dists/trusty-updates/main/binary-amd64/Packages Hash Sum mismatch
W: Failed to fetch http://kr.archive.ubuntu.com/ubuntu/dists/trusty-updates/main/binary-i386/Packages Hash Sum mismatch
E: Some index files failed to download. They have been ignored, or old ones used instead.
다음 방법으로 sources.list 파일을 수정하시면 됩니다.
sudo vi /etc/apt/sources.list
vi의 치환 기능을 이용하여 한번에 변경합니다.
:%s/kr.archive.ubuntu.com/ftp.daum.net/g
다른 저장소도 변경합니다.
:%s/security.ubuntu.com/ftp.daum.net/g
:%s/extras.ubuntu.com/ftp.daum.net/g
파일 수정 후 업데이트와 업그레이드를 실행하면 됩니다.
$ sudo apt-get update
$ sudo apt-get upgrade
새로운 노투북에 서버를 설치하는 과정에 업데이트 에러가 발생하여 방법을 찾아 올립니다.
감사합니다.