Fehlgeschlagene GIMP-Installation aufgrund von

Fehlgeschlagene GIMP-Installation aufgrund von

Ich versuche, GIMP für Ubuntu 12.10 vom Ubuntu SW Center aus zu installieren, aber jedes Mal, wenn ich es versuche, erhalte ich die Meldung, dass ich das Repository nicht erreichen kann und meine Internetverbindung überprüfen muss. Das funktioniert mit Firefox und Thunderbird einwandfrei. Außerdem erscheint die Information, dass ein unsicheres Programm aufgrund fehlender Authentifizierung nicht installiert werden kann. Kann jemand eine Erklärung geben?

Antwort1

Öffnen Sie ein Terminal.

Drücken Sie Ctrl+ Alt+T

Starte es:

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

Löschen Sie in der geöffneten Datei den Inhalt und fügen Sie Folgendes ein:

## 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

Strg + O, Datei speichern. Strg + X, Nano schließen.

Führen Sie den Vorgang in einem Terminal weiter aus:

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

verwandte Informationen