I downloaded the 32 bit .rpm (For Fedora/openSUSE) to my CentOS machine. when installing it, I got the following error.
$ rpm -ivh google-chrome-stable_current_i386.rpm
warning: google-chrome-stable_current_i386.rpm: Header V4 DSA signature: NOKEY, key ID 7fac5991
error: Failed dependencies:
lsb >= 3.2 is needed by google-chrome-stable-12.0.742.124-92024.i386
libcurl.so.4 is needed by google-chrome-stable-12.0.742.124-92024.i386
xdg-utils is needed by google-chrome-stable-12.0.742.124-92024.i386
This much is clear (I guess), that I need the package lsb
version greater than or equal to 3.2, libcurl.so.4
and xdg-utils
. But where will I get these from. I think installing the three above packages should resolve the installation error.
Addendum: Progress was made by installing the packages lsb
and xdg-utils
using the command yum install <pkg_name>
. But I still have the libcurl.so.4
library file as a missing dependancy. Any ideas as to how this can be resolved.
yum whatprovides libcurl
, I get no matches found. But the good news is that the command to install the google chrome package now says I don't have onlylibcurl.so.4
. Any suggestions for this? – Thomas Jul 16 '11 at 07:15sudo yum clean all
and thensudo yum makecache
to rebuild the local yum database and try again. It's a good idea to do this periodically, anyways. However, the package you need is calledlibcurl
. You can search/info/install it according to above instructions. – Joe Internet Jul 17 '11 at 00:42yum localinstall google-chrome-stable_current_i386.rpm
, I getError: Missing Dependency: libcurl.so.4 is needed by package google-chrome-stable-12.0.742.124-92024.i386
among other details and it doesn't resolve the library file dependency. – Thomas Jul 23 '11 at 10:12yum whatprovides libcurl.so.4
will only work on a machine that already has the package that placed the libcurl.so.4 file in that machine. It is of no use on a machine that does not already have the file. I tried running thesudo yum clean all
and thensudo yum makecache
to rebuild the local yum database; but this did not help. I also attempted installing the packagelibcurl
by using the commandyum install libcurl
, but it returnedNo package libcurl available
. Any other ideas I could try? – Thomas Jul 23 '11 at 10:20