[重複] により GIMP のインストールに失敗しました

[重複] により GIMP のインストールに失敗しました

Ubuntu SW センターから Ubuntu 12.10 用の GIMP をインストールしようとしていますが、試すたびにリポジトリにアクセスできないのでインターネット接続を確認する必要があるという応答が返ってきます。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

関連情報