Ubuntu 16.04 + Bitnami WP A instalação do AWS + Webmin falhou + E: Package [] não tem candidato de instalação

1

Eu também tenho um tópico aberto no suporte do Bitnami fórum . Eu instalei o WordPress Multisite Certified by Bitnami através do mercado da AWS.

Estou tentando instalar o webmin (ou qualquer pacote, na verdade) e não posso

Por SSH, eu corro:

sudo apt-get update

sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl apt-show-versions python

Quais resultados:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package libnet-ssleay-perl 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

Package libauthen-pam-perl 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

Package libio-pty-perl 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

Package apt-show-versions 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

Package python 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 'libnet-ssleay-perl' has no installation candidate
E: Package 'libauthen-pam-perl' has no installation candidate
E: Package 'libio-pty-perl' has no installation candidate
E: Package 'apt-show-versions' has no installation candidate
E: Package 'python' has no installation candidate

Eu tentei um monte de correções e parece que há algo que precisa ser ajustado em /etc/apt/sources.list ... o mais estranho é que esse arquivo está vazio.

Eu também tentei

nano /etc/apt/sources.list

deb http://download.webmin.com/download/repository sarge contrib

... então ..

sudo apt-get -f install webmin

... que gera

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 webmin : Depends: libnet-ssleay-perl but it is not installable
          Depends: libauthen-pam-perl but it is not installable
          Depends: libio-pty-perl but it is not installable
          Depends: apt-show-versions but it is not installable
          Depends: python but it is not installable
E: Unable to correct problems, you have held broken packages.

Obrigado antecipadamente!

    
por Ryan Dorn 01.03.2018 / 00:04

1 resposta

1

Você tentou preencher o /etc/apt/sources.list? Este é o meu fie para 16.04 em aws:

$ cat /etc/apt/sources.list | grep -v '#'

  

deb link principal do xenial   restrito deb-src link   principal principal xenial

     

deb link atualizações xeniais   principal restrito deb-src    link xenial-updates main   restrito

     

deb link universo xenial   deb-src link xenial   universo deb link   universo xenial-updates deb-src    link atualizações xeniais   universo

     

deb link multiverso xenial   deb-src link xenial   multiverse deb link   xenial-updates multiverse deb-src    link atualizações xeniais   multiverso

     

deb link xenial-backports   universo restrito principal multiverse deb-src    link xenial-backports main   universo restrito multiverso

     

deb link xenial-security main restricted   deb-src link xenial-security main   deb restrito link xenial-security   universo deb-src link xenial-security   universo deb link xenial-security   multiverse deb-src link xenial-security   multiverso

executando

  

~ $ apt-cache madison libnet-ssleay-perl libauthen-pam-perl   libio-pty-perl apt-show-versões python

mostra pacotes disponíveis a partir de repos selecionados

libnet-ssleay-perl | 1.72-1build1 | http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages

libauthen-pam-perl | 0.16-3build2 | http://gb.archive.ubuntu.com/ubuntu xenial/universe amd64 Packages

libio-pty-perl | 1:1.08-1.1build1 | http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages

apt-show-versions |     0.22.7 | http://gb.archive.ubuntu.com/ubuntu xenial/universe amd64 Packages 

apt-show-versions |     0.22.7 | http://gb.archive.ubuntu.com/ubuntu xenial/universe i386 Packages

python | 2.7.12-1~16.04 | http://gb.archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages

python |   2.7.11-1 | http://gb.archive.ubuntu.com/ubuntu xenial/main amd64 Packages

Espero que isso ajude. Obrigado

    
por bogdan 01.03.2018 / 12:19