Linux Mint: Chrome을 제거한 후 설치할 수 없습니다

Linux Mint: Chrome을 제거한 후 설치할 수 없습니다

방금 devtools 콘솔의 불쾌한 버그 때문에 소프트웨어 관리자를 통해 Chrome을 제거했습니다. 제거하고 다시 설치하는 것이 문제를 해결해 볼 가치가 있다고 생각했습니다.

이제 다시 설치하려고 하면 다음과 같은 메시지가 나타납니다.

$ 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.

이 메시지는 혼란스럽습니다. 왜 "불가능한 경우"를 요청하는지 모르겠고 불안정한 배포판을 사용하고 있지도 않습니다. 그리고 "손상된 패키지를 갖고 계시군요." - 제가 갖고 있었는데 지금은 아닌가요? 이것은 실제로 무엇을 말합니까?

내 OS 정보는 다음과 같습니다.

$ 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

어떤 조언이라도 감사드립니다… Max

답변1

구글 크롬을 삭제해야 합니다

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

키 추가

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

sources.listGoogle 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

구글 크롬 설치

sudo apt-get install google-chrome-stable

편집하다 Google은 Linux-mint Maya에 대한 지원을 종료합니다(Ubuntu 12.04 기반).추가 정보

CPS의 Chrome 플랫폼 지원 중단(2015-10)의 일환으로 2016년 3월 초에 32비트 Linux, Ubuntu Precise(12.04) 및 Debian 7(wheezy)에서 Google Chrome에 대한 지원이 종료됩니다.

관련 정보