Ubuntu에서 apt-get update fail to fetch 에러 대처법
임베디드(Embedded)/디바이스 프로그래밍(Device Progamming) 2013. 12. 19. 14:091. 목적
ㄱ. apt-get update 시에 fetch to fail 에러가 발생 할 때가 있다.
2. 본론
ㄱ. 보통 다음에 동작에 해결할 수 있다.
apt-get update
apt-get update --fix-missing
apt-get install xxxx
apt-get upgrade
ㄴ. 위의 동작으로 해결이 안되는 경우 아래와 같이 해결한다.
echo "nameserver 8.8.8.8" > /etc/resolv.conf
echo "nameserver 8.8.4.4" > /etc/resolv.conf
ㄷ. 위의 명령어 후에 apt-get update를 하면 해결되게 된다.
3. 결과
ㄱ. apt-get update의 fail to fetch 에러시 해결 방법을 알아본다.
'임베디드(Embedded) > 디바이스 프로그래밍(Device Progamming)' 카테고리의 다른 글
error: newly created file is older than distributed files! Check your system clock 발생 시 해결 방안 (0) | 2013.12.21 |
---|---|
우분투 NFS 시작시에 자동 마운트 하기 (0) | 2013.12.19 |
BlueZ를 통한 simplescan 예제 테스트 (0) | 2013.12.18 |
BlueZ 라이브러리를 이용한 리눅스 Bluetooth 프로그래밍 (3) | 2013.12.18 |
임베디드 to 호스트 NFS 설정하기 (0) | 2013.12.18 |