昨日、GNOME3でFedora15Betaをインストールしました-それはうまく機能します。ただし、問題の1つは、Chrome 32ビット(間違っていたので、64ビットバージョンであるはずです)をインストールしたのに、アンインストールできないことです。
[ソフトウェアの追加と削除]で見つかりません。また、他のChromeのコピーについて文句を言うため、正しいバージョンのChromeをインストールできません。
既存のコピーを削除して64ビットバージョンをインストールする方法はありますか?
インストールしようとしたときに表示されるメッセージは次のとおりです。
Test Transaction Errors: file /etc/cron.daily/google-chrome from install of google-chrome-stable-11.0.696.65-84435.x86_64 conflicts with file from package google-chrome-stable-11.0.696.65-84435.i386
file /opt/google/chrome/chrome from install of google-chrome-stable-11.0.696.65-84435.x86_64 conflicts with file from package google-chrome-stable-11.0.696.65-84435.i386
file /opt/google/chrome/chrome-sandbox from install of google-chrome-stable-11.0.696.65-84435.x86_64 conflicts with file from package google-chrome-stable-11.0.696.65-84435.i386
file /opt/google/chrome/libffmpegsumo.so from install of google-chrome-stable-11.0.696.65-84435.x86_64 conflicts with file from package google-chrome-stable-11.0.696.65-84435.i386
file /opt/google/chrome/libpdf.so from install of google-chrome-stable-11.0.696.65-84435.x86_64 conflicts with file from package google-chrome-stable-11.0.696.65-84435.i386
file /opt/google/chrome/libppGoogleNaClPluginChrome.so from install of google-chrome-stable-11.0.696.65-84435.x8...
ターミナルを開き、次のように入力します。
rpm -qa | grep chrome
インストールされているChromeパッケージが見つかるかどうかを確認し、見つかった場合は、次のように入力します。
rpm -e <chrome package name here>
例えば:
rpm -e google-chrome-stable-22.0.1229.94-161065.i386
ファイルの場所を探している場合は、ディストリビューションによって異なる場合がありますが、 ここで人気のある回答 を確認することから始めることができます。
これは私がCentOS6.2からそれを削除することができた唯一の方法です:
[root@I7 ~]# rpm -qa | grep chrome
xorg-x11-drv-openchrome-0.3.0-3.20120806git.el6.x86_64
[root@I7 ~]# yum -y erase xorg-x11-drv-openchrome-0.3.0-3.20120806git.el6.x86_64
一部のディストリビューションでは、代わりに含まれるパッケージがクロムである可能性があります(chrom
ではなくchrome
をgrepします)。
$ use rpm -qa | grep chrom
chromium-31.0.1650.63-2.el6.x86_64
ターミナルを開き、(rootとして)入力します。
yum -y erase google-chrome
または、sudoerの場合は、次のように入力します。
Sudo yum -y erase google-chrome
そして、それはあなたのシステムからChromeを削除します。
最初にxdg-utilsをインストールしてから、google-chromeを削除することでうまくいきました。