web-dev-qa-db-ja.com

Gdebi-coreパッケージは利用できません

Sudo apt-get install -f gdebi-core
[Sudo] password for sdksdk:
Reading package lists ... Done
Building dependency tree
Loading state information ... Done
Gdebi-core package is not available, but is referred to by another package. This may mean,
that the package is missing, it has been obsoleted, or is only available from another source
4
Daniel Ferencz

最初にuniverseが有効になっていることを確認します。次の方法で有効にできます。

Sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"

次に、コマンドを実行します。

Sudo apt-get update

Sudo apt-get install gdebi
4
Maythux

パッケージgdebi-coreメインリポジトリ にあります。このようなエントリについては、/etc/apt/sources.listを確認してください。信頼のために:

配布Trustyの場合、例えば:

deb http://archive.ubuntu.com/ubuntu trusty main

コマンドで分布を見る

lsb_release -sc

man lsb_releaseから

-c, --codename
      Display the code name of the currently installed distribution.

-s, --short
      Use  the  short  output  format  for any information displayed.
      This format omits the leading header(s).

エントリが見つからない場合は、次のコマンドを使用します。

Sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main"

その後:

Sudo apt-get update
Sudo apt-get install gedbi-core
2
A.B.