Instalar versões diferentes da libssl causaria problemas?

1

Estou tentando instalar a versão de testes do Spotify no Debian . É uma versão de teste e dizem que é para o Debian Squeeze, meu Crunchbang (64 bits) é baseado no Debian Wheezy, mas estou tentando instalá-lo assim mesmo.

Diz:

% sudo apt-get install spotify-client   
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:
 spotify-client : Depends: libssl0.9.8 but it is not installable
E: Unable to correct problems, you have held broken packages.
% sudo apt-get install spotify-client   
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:
 spotify-client : Depends: libssl0.9.8 but it is not installable
E: Unable to correct problems, you have held broken packages.

No gerenciador de sinápticas, vejo que tenho libssl1.0.0 . Então é possível instalar o libssl0.9.8 ? E isso causaria problemas ou conflitos entre as versões instaladas?

    
por Lynob 18.08.2013 / 21:53

1 resposta

3

Existe um HowTo , que explica isso.

Basta baixar o arquivo deb com

wget http://ftp.us.debian.org/debian/pool/main/o/openssl/libssl0.9.8_0.9.8o-4squeeze14_amd64.deb

e execute

sudo dpkg -i libssl0.9.8_0.9.8o-4squeeze14_amd64.deb

Não deve haver problema.

    
por 21.08.2013 / 17:00