web-dev-qa-db-ja.com

パッケージ 'vim'にはインストール候補がありません

VMwareを使用して、Windows 7内にUbuntuをインストールしました。私はubuntuでcプログラムを実行したかった。

私が試したとき、私はこのようになりました、

b@ubuntu:~/examples$ vim a.c
The program 'vim' can be found in the following packages:
 * vim
 * vim-gnome
 * vim-tiny
 * vim-gtk
 * vim-nox
Try: Sudo apt-get install <selected-package>
b@ubuntu:~/examples$ Sudo apt-get install vim
[Sudo] password for b:
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 obseleted, or 
is only available from another source

E: Package 'vim' has no installation candidate
I tried apt-get install vim

E: Could not open lock file /var/lib/dpkg/lock - open (13:Permission denied)
E:unable to lock the administration directory (/var/lib/dpkg/), are you root?

suを実行しようとすると、パスワードを要求されました。ルートパスワードを入力したときに受け入れられず、「認証エラー」と表示される

Vimパッケージをインストールできませんでした。インストールする方法はありますか?提案してください。ルートパスワードを回復するにはどうすればよいですか。

13
Angus

Ubuntu 12.04にvimをインストールしようとしたときに、同じ問題が発生しました。
以下を試してみましたが、うまくいきました:-
Sudo apt-get update
それとその後
Sudo apt-get install vim
これらのコマンドを実行した後、正常に動作し始めました。

14
Pratik Singhal

Sudo commandの後にパスワードの入力を求められたら、YOUR password not root passwordと入力する必要があります。コマンドプロンプトから、ユーザー名はbのように見えるため、bパスワードを指定する必要があります。もちろん、これはbユーザーがSudoを許可されている場合(ubuntuのadminグループのメンバーである場合など)にのみ有効です。

2
Khaled