修復 Ubuntu 中 「E: The package cache file is corrupted, it has the wrong hash」

2019-08-21 22:20:00

今天,我嘗試更新我的 Ubuntu 18.04 LTS 的倉庫列表,但收到了一條錯誤訊息:“E: The package cache file is corrupted, it has the wrong hash”。這是我在終端執行的命令以及輸出:

$ sudo apt update

範例輸出:

Hit:1 http://it-mirrors.evowise.com/ubuntu bionic InReleaseHit:2 http://it-mirrors.evowise.com/ubuntu bionic-updates InReleaseHit:3 http://it-mirrors.evowise.com/ubuntu bionic-backports InReleaseHit:4 http://it-mirrors.evowise.com/ubuntu bionic-security InReleaseHit:5 http://ppa.launchpad.net/alessandro-strada/ppa/ubuntu bionic InReleaseHit:7 http://ppa.launchpad.net/leaeasy/dde/ubuntu bionic InReleaseHit:8 http://ppa.launchpad.net/rvm/smplayer/ubuntu bionic InReleaseIgn:6 https://dl.bintray.com/etcher/debian stable InReleaseGet:9 https://dl.bintray.com/etcher/debian stable Release [3,674 B]Fetched 3,674 B in 3s (1,196 B/s)Reading package lists... DoneE: The package cache file is corrupted, it has the wrong hash

Ubuntu 中的 “The package cache file is corrupted, it has the wrong hash” 錯誤

經過一番谷歌搜尋,我找到了解決此錯誤的方法。

如果你遇到過這個錯誤,不要驚慌。只需執行下面的命令修復。

在執行命令之前,請再次確認你在最後加入了 *。在命令最後加上 * 很重要。如果你沒有新增,它會刪除 /var/lib/apt/lists/*目錄,而且無法恢復。我提醒過你了!

$ sudo rm -rf /var/lib/apt/lists/*

現在我再次使用下面的命令更新系統:

$ sudo apt update

現在好了!希望它有幫助。