O pacote Gdebi-core não está disponível

2
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
    
por Daniel Ferencz 08.06.2015 / 13:25

2 respostas

2

Primeiro, verifique se universe está ativado. Você pode ativá-lo por:

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

Em seguida, execute o comando:

sudo apt-get update

sudo apt-get install gdebi
    
por Maythux 08.06.2015 / 13:29
2

O pacote gdebi-core está nos repositórios principais . Verifique seu /etc/apt/sources.list para uma entrada como essa, por exemplo. para fiel:

Para a distribuição do Trusty, por exemplo:

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

Veja sua distribuição com o comando

lsb_release -sc

de 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).

Se a entrada estiver faltando, use este comando:

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

Depois disso:

sudo apt-get update
sudo apt-get install gedbi-core
    
por A.B. 08.06.2015 / 13:52