본문 바로가기
Ubuntu

[Ubuntu] apt-update 해시 오류

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

hash 에러 발생

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

sudo apt-get update

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

 

apt 캐시 삭제

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

 

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

반응형

'Ubuntu' 카테고리의 다른 글

[Ubuntu] Ubuntu 20.04 Samba 설치  (0) 2024.06.03
[Ubuntu] 스크린 샷 찍기  (0) 2024.06.03
[Ubuntu] CCACHE 설치하기  (0) 2024.06.03