[중복]으로 인해 김프 설치에 실패했습니다.

[중복]으로 인해 김프 설치에 실패했습니다.

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, 나노를 닫습니다.

터미널에서 계속 실행:

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

관련 정보