Google-chrome – How to uninstall Google Chrome in Fedora

fedoragnome3google-chrome

Yesterday I installed Fedora 15 Beta with GNOME 3 – it works well. One problem though is that I installed Chrome 32-bit (which was wrong, should have been the 64-bit version) and now I can't uninstall it.

I can't find it in Add/Remove Software, and I also can't install the correct version of Chrome because it complains about my other copy of Chrome.

Any ideas how I can remove the existing copy and get the 64-bit version installed?

Here's the message I get when trying to install:

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

Best Answer

Open up a terminal, and enter:

rpm -qa | grep chrome

Look to see if you can find the installed Chrome package, and if you find it, enter:

rpm -e <chrome package name here>

For example:

rpm -e google-chrome-stable-22.0.1229.94-161065.i386

If you're looking for where the files are located, it may be different depending on a distro, but you can start by checking the popular answer here.

Related Question