apt-get으로 vim을 설치할 수 없습니다 NOT receive any ## review or updates

sudo apt-get install vim

Reading package lists... Done
Building dependency tree
Reading state information... Done
Package vim is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'vim' has no installation candidate

나는 시도 sudo apt-get update && sudo apt-get upgrade했지만 효과가 없으며 같은 문제입니다.

방금 Ubuntu를 설치했습니다. vim은 작동하지만 화살표 키를 누르면 ABCD가 인쇄됩니다.

# deb cdrom:[Ubuntu 13.04 _Raring Ringtail_ - Release amd64 (20130424)]/ raring main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://pk.archive.ubuntu.com/ubuntu/ raring main restricted
deb-src http://pk.archive.ubuntu.com/ubuntu/ raring main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://pk.archive.ubuntu.com/ubuntu/ raring-updates main restricted
deb-src http://pk.archive.ubuntu.com/ubuntu/ raring-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://pk.archive.ubuntu.com/ubuntu/ raring universe
deb-src http://pk.archive.ubuntu.com/ubuntu/ raring universe
deb http://pk.archive.ubuntu.com/ubuntu/ raring-updates universe
deb-src http://pk.archive.ubuntu.com/ubuntu/ raring-updates universe

## 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
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://pk.archive.ubuntu.com/ubuntu/ raring multiverse
deb-src http://pk.archive.ubuntu.com/ubuntu/ raring multiverse
deb http://pk.archive.ubuntu.com/ubuntu/ raring-updates multiverse
deb-src http://pk.archive.ubuntu.com/ubuntu/ raring-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://pk.archive.ubuntu.com/ubuntu/ raring-backports main restricted universe multiverse
deb-src http://pk.archive.ubuntu.com/ubuntu/ raring-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu raring-security main restricted
deb-src http://security.ubuntu.com/ubuntu raring-security main restricted
deb http://security.ubuntu.com/ubuntu raring-security universe
deb-src http://security.ubuntu.com/ubuntu raring-security universe
deb http://security.ubuntu.com/ubuntu raring-security multiverse
deb-src http://security.ubuntu.com/ubuntu raring-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu raring partner
# deb-src http://archive.canonical.com/ubuntu raring partner

## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
deb http://extras.ubuntu.com/ubuntu raring main
deb-src http://extras.ubuntu.com/ubuntu raring main


답변

호르헤 카스트로 (Jorge Castro)는 다음과 같이 제안했다.

apt-get now supports a 'mirror' method that will automatically select a good mirror based on your location. Putting:

deb mirror://mirrors.ubuntu.com/mirrors.txt precise main restricted universe multiverse
deb mirror://mirrors.ubuntu.com/mirrors.txt precise-updates main restricted universe multiverse
deb mirror://mirrors.ubuntu.com/mirrors.txt precise-backports main restricted universe multiverse
deb mirror://mirrors.ubuntu.com/mirrors.txt precise-security main restricted universe multiverse

그것은 나를 위해 일했다! 위의 줄을 추가했습니다.

/etc/apt/sources.list

상단에 그리고 난

sudo apt-get update

그리고

sudo apt-get install vim

공장!


답변

http://pk.archive.ubuntu.com/ubuntu/를 둘러 보면 사용중인 미러가 오래된 것 같습니다. 미러를 다른 것으로 변경하여 오류를 수정해야합니다.


답변

sources.list에 deb-src 저장소를 추가해야합니다.

sudo nano /etc/apt/sources.list

를 제거 #로 시작하는 그 줄에서 #deb-src다음 Ctrl+ o, Enter, Ctrl+ x나노에서 저장하고 종료합니다.

sudo apt-get update
sudo install vim

그리고 vim이 설치 될 것입니다.