1. 程式人生 > >Ubuntu安裝軟體包時報錯: Failed to fetch ...deb

Ubuntu安裝軟體包時報錯: Failed to fetch ...deb

問題描述

今天在Ubuntu上安裝軟體包的時候報錯,如下:

apt-get install nginx
Failed to fetch http://mirrors.aliyuncs.com/ubuntu/pool/main/n/nginx/nginx_1.4.6-1ubuntu3.4_all.deb

問題原因

Ubuntu自帶的一些源不好使導致的。

解決辦法

刪除 /var/lib/apt/lists/partial 目錄下的所有檔案,然後執行apt-get update。

cd /var/lib/apt/lists/partial
rm ./* 
apt-get update

然後再次安裝軟體包

apt-get install nginx