web-dev-qa-db-ja.com

「E:パッケージ「synaptic」にはインストール候補がありません」synapticをインストールしようとしたとき

ilshat@lpt:~$ Sudo apt-get install synaptic
Reading package lists… Done
Building dependency tree
Reading state information… Done
Package synaptic 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 ‘synaptic’ has no installation candidate
  • Sudo apt-get updateを試しましたが、うまくいきません。
2
rohit

Synapticは、いわゆるniverseリポジトリで利用可能です。そのパッケージが見つからない場合は、niverseが有効になっていないことを意味します。有効にするには、次の手順を実行します。

GUI

Software Sourcesを開き、Community-maintained free and open-source software(universe)を選択します

Software Sources

そうすると、ソフトウェアソースをリロードするように求められ、パッケージをインストールする準備が整います。

ターミナル

ファイル/etc/apt/sources.listを開きます。

sensible-editor /etc/apt/sources.list

そして、次の3行を追加します。

deb http://archive.ubuntu.com/ubuntu/ quantal universe
deb http://archive.ubuntu.com/ubuntu/ quantal-updates universe
deb http://security.ubuntu.com/ubuntu/ quantal-security universe

注: Quantal(12.10)を使用していると仮定しています。そうでない場合は、lsb_release -cを使用してUbuntuリリースのコード名を見つけ、quantalをそのコード名に置き換えます。

次に、Sudo apt-get updateを実行し、Synapticをインストールします。

3

/etc/apt/sources.listの修正では不十分でした:

 deb http://br。archive.ubuntu.com/ubuntu/ exact-updates main limited 
 deb-src http://br。archive.ubuntu.com/ubuntu/ exact-updatesメイン制限

それからapt-get updateを実行しました:無効な署名エラーがたくさんありました。

会社の プロキシ でした。

そのときだけapt-get updateが機能し、パッケージを再度インストールできました。

1
jpfreire

このエラーは、使用しているリポジトリにシナプスパッケージがないことを意味しますが、aptは他のパッケージがシナプスパッケージを参照していることを確認できます。どのリポジトリを使用していますか?デフォルト(archive.ubuntu.com)に戻すことができる場合は、apt-get updateを実行するとインストールできます。

0
tgm4883