Contents

linux 更新时,出现如下错误:

W: Failed to fetch ****** Hash Sum mismatch,
E: Some index files failed to download. They have been ignored, or old ones used instead.

经过google得知出现错误的原因:

  • 有些ISP缓存了仓库,没有及时更新。

  • 使用mirror更新,而mirror没有及时更新

使用如下命令解决:

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