본문 바로가기
개발/Ubuntu

Ubuntu 20.04 LTS apt-update 해시 오류

by 준그래머 2024. 6. 3.
반응형

1. hash 에러 발생

apt-get update를 하던 도중 아래와 같은 에러가 발생했다.

sudo apt-get update

해시의 합이 맞지 않다는 이슈인데, 해결 방법은 다음과 같다.

 

 

2. apt 캐시 삭제

sudo apt-get clean 
sudo rm -rf /var/lib/apt/lists/*

 

 

3. apt 갱신

sudo apt-get upgrade -y
sudo apt-get update

 

 

4. apt 정보 업데이트

sudo apt-get update -o Acquire::CompressionTypes::Order::=gz
sudo apt-get upgrade -y
sudo apt-get update

 

 

 

Bug #1785778 “Hash Sum mismatch Ubuntu Server 18.04.1 LTS” : Bugs : apt package : Ubuntu

Hi, I'm getting weird Hashes mismatch error while trying to update Ubuntu server 18.04.1 LTS server. The error I'm receiving is as follows. $ sudo apt-get update Get:1 http://security.ubuntu.com/ubuntu bionic-security InRelease [83.2 kB] Hit:2 http://archi

bugs.launchpad.net