Linux Mint: Não é possível instalar o chrome, depois de desinstalá-lo

0

Eu apenas desinstalei o Chrome através do gerenciador de software devido a um bug irritante com o console no devtools - pensando que uma desinstalação e reinstalação valeria a pena tentar consertá-lo.

Tentando instalá-lo novamente agora, recebo este:

$ 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: libstdc++6 (>= 4.8.0) but 4.6.3-1ubuntu5 is to be installed
                        Depends: lsb-base (>= 4.1) but 4.0-0ubuntu20.3 is to be installed
E: Unable to correct problems, you have held broken packages.

Essa mensagem é confusa - não sei por que teria solicitado uma "situação impossível" e não estou usando a distribuição instável. Também "você realizou pacotes quebrados". - Eu segurei eles, mas eu não faço no momento? O que isso está realmente dizendo?

Estas são as informações do meu sistema operacional:

$ cat /etc/linuxmint/info
RELEASE=13
CODENAME=maya
EDITION="MATE 64-bit"
DESCRIPTION="Linux Mint 13 Maya"
DESKTOP=MATE
TOOLKIT=GTK
NEW_FEATURES_URL=http://www.linuxmint.com/rel_maya_whatsnew.php
RELEASE_NOTES_URL=http://www.linuxmint.com/rel_maya.php
USER_GUIDE_URL=http://www.linuxmint.com/documentation.php
GRUB_TITLE=Linux Mint 13 MATE 64-bit

Grato por qualquer conselho .... Max

    
por Max Williams 20.04.2016 / 11:38

1 resposta

1

Você precisa remover o google chrome

sudo apt-get remove google-chrome-stable
sudo rm /etc/apt/sources.list.d/google-chrome.list*
sudo apt-get -f install

Adicione a chave

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

altere a entrada sources.list para o Google Chrome

sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list'
sudo apt-get update

instale o Google Chrome

sudo apt-get install google-chrome-stable

Editar O Google tem suporte final para o Linux-mint maya (baseado no Ubuntu 12.04) Mais informações

As part of Chrome Platform Deprecation CPS (2015-10), we will end support for Google Chrome on 32-bit Linux, Ubuntu Precise (12.04), and Debian 7 (wheezy) in early March, 2016.

    
por 20.04.2016 / 12:28