由於[重複],GIMP 安裝失敗

由於[重複],GIMP 安裝失敗

我正在嘗試從 Ubuntu SW 中心安裝適用於 Ubuntu 12.10 的 GIMP,但每次我嘗試時都會收到重播,提示我無法存取儲存庫,我必須檢查我的 Internet 連線。這在 Firefox 和 Thunderbird 中可以正常工作。此外,也會出現因缺少身份驗證而無法安裝不安全程式的資訊。有人可以給一些解釋嗎?

答案1

打開終端,

Ctrl+ Alt+T

運行:

sudo -i
nano /etc/apt/sources.list

在打開的文件中,刪除內容並貼上:

## Uncomment the following two lines to fetch updated software from the network
deb http://old-releases.ubuntu.com/ubuntu quantal main restricted
deb-src http://old-releases.ubuntu.com/ubuntu quantal main restricted

## Uncomment the following two lines to fetch major bug fix updates produced
## after the final release of the distribution.
deb http://old-releases.ubuntu.com/ubuntu quantal-updates main restricted
deb-src http://old-releases.ubuntu.com/ubuntu quantal-updates main restricted

## Uncomment the following two lines to add software from the 'universe'
## repository.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://old-releases.ubuntu.com/ubuntu quantal universe
deb-src http://old-releases.ubuntu.com/ubuntu quantal universe

deb http://old-releases.ubuntu.com/ubuntu quantal-security main restricted
deb-src http://old-releases.ubuntu.com/ubuntu quantal-security main restricted

deb http://old-releases.ubuntu.com/ubuntu quantal-security universe
deb-src http://old-releases.ubuntu.com/ubuntu quantal-security universe

deb http://old-releases.ubuntu.com/ubuntu quantal multiverse
deb-src http://old-releases.ubuntu.com/ubuntu quantal multiverse

deb http://old-releases.ubuntu.com/ubuntu quantal-backports main restricted universe multiverse

Ctrl + O,儲存檔案。 Ctrl + X,關閉nano。

繼續在終端機中運作:

sudo -i
apt-get update
apt-get dist-upgrade
apt-get install gimp
apt-get clean

相關內容