Servidor Ubuntu 12.04.5 Pacote php5-mcrypt não está disponível

1

Estou no Ubuntu Server 12.04.5 Estou tentando instalar o php5-mcrypt. Estou recebendo este erro.

~$ sudo apt-get install php5-mcrypt

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package php5-mcrypt 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 'php5-mcrypt' has no installation candidate

Como posso resolver isso?

    
por f.farah 07.01.2015 / 16:51

1 resposta

5

Você deve primeiro adicionar o repositório Universe para instalar php5-mcrypt -

Ubuntu 12.04 e abaixo -

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

Ubuntu 12.10 e acima -

sudo add-apt-repository universe

Atualize suas listas de software -

sudo apt-get update

Instale o pacote php5-mcrypt -

sudo apt-get install php5-mcrypt

Caso o comando add-apt-repository não seja reconhecido, execute o seguinte comando -

sudo apt-get install software-properties-common python-software-properties
    
por Rohith Madhavan 07.01.2015 / 16:56