Não é possível instalar o google-chrome-stable no ubuntu 12.10 devido a libnss3 (= 3.14.3)

1

Meu plugin Vimium parou de funcionar no Google Chrome, então eu desinstalei o pedido para instalar a versão mais recente. Eu não consigo mais instalá-lo por causa da versão de dependência incorreta no pacote libnss3. Tentei reinstalar o pacote, mas ele é reinstalado na mesma versão.

Aqui está a saída da falha de instalação:

$ sudo apt-get install google-chrome-stable 
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:
 google-chrome-stable : Depends: libnss3 (>= 3.14.3) but 3.13.1.with.ckbi.1.88-1ubuntu7 is to be installed
E: Unable to correct problems, you have held broken packages.

Tentou instalar o libnss3 para essa versão específica com:

sudo apt-get install libnss3=3.14.3

mas não encontra essa versão.

    
por Goran 15.12.2013 / 01:20

2 respostas

0

Você pode ter que limpar o google-chrome, libnss3, libnss3-1d e fazer um autoremove e, em seguida, um autoclean. Em seguida, instale libnss3 e libnss3-1d novamente nos repositórios oficiais. Em seguida, vá para o Google e faça o download do Chrome e reinstale.

sudo apt-get purge ***name of packages && sudo apt-get autoremove && sudo apt-get autoclean && sudo apt-get install ***libnss3 libnss3-1d 
    
por user159773 15.12.2013 / 01:48
0

Adicione deb http://security.ubuntu.com/ubuntu precise-security main ao final de /etc/apt/sources.list

adicione a chave gpg

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 8BAF9A6F

Faça uma atualização

sudo apt-get update

Finalmente instale o libssl sudo apt-get install libnss3

    
por Renju chingath 24.07.2014 / 10:51