1

I'm trying to install Google Chrome in my Ubuntu 11.10 OS however I'm getting this error:

$ sudo dpkg -i google-chrome-stable_current_amd64.deb
[sudo] password for xybrek: 
Selecting previously deselected package google-chrome-stable.
(Reading database ... 167351 files and directories currently installed.)
Unpacking google-chrome-stable (from google-chrome-stable_current_amd64.deb) ...
dpkg: dependency problems prevent configuration of google-chrome-stable:
 google-chrome-stable depends on gconf-service; however:
  Package gconf-service is not installed.
 google-chrome-stable depends on libgconf-2-4 (>= 2.31.1); however:
  Package libgconf-2-4 is not installed.
 google-chrome-stable depends on libx11-6 (>= 2:1.4.99.1); however:
  Version of libx11-6 on system is 2:1.4.4-2ubuntu1.
dpkg: error processing google-chrome-stable (--install):
 dependency problems - leaving unconfigured
Processing triggers for gnome-menus ...
Processing triggers for desktop-file-utils ...
Processing triggers for bamfdaemon ...
Rebuilding /usr/share/applications/bamf.index...
Processing triggers for man-db ...
Errors were encountered while processing:
 google-chrome-stable

3 Answers3

1

Please look here: http://googlechromereleases.blogspot.in/2013/06/stable-channel-update_17.html

To quote:

The Stable channel has been updated to 28.0.1500.45 for Linux.

The minimum requirements for Linux have also been updated:

Ubuntu 12.04+
Debian 7+
OpenSuSE 12.2+
Fedora Linux 17+
0

This is happen just because of dependencies,

Try fallowing command in the terminal:

sudo apt-get -f install
0

Your issue is due to the fact that the software repositories for 11.10 do not have those packages (gconf-service, libgconf-2-4, libx11-6 >= 2:1.4.99.1). For this reason, the software package is not installable on 11.10. Releases from 12.04 onwards should work.

Richard
  • 8,588