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

どんなアドバイスもありがとうございました…マックス

ベストアンサー1

Google Chromeを削除する必要があります

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

Google Chromeのインストール

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のサポートが終了します。

おすすめ記事