Sponsored Content
Operating Systems Linux Red Hat Install google chrome browser in RHEL Post 302767729 by pandu345 on Thursday 7th of February 2013 01:34:52 PM
Old 02-07-2013
Install google chrome browser in RHEL

Hi All,

This is my operating system.
Red Hat Enterprise Linux Server release 5.7 (Tikanga).
This is a64 bit version

Code:
[root@oim11gdevlab tmp]# cat /etc/redhat-release 
Red Hat Enterprise Linux Server release 5.7 (Tikanga)
[root@oim11gdevlab tmp]# uname -a
Linux oim11gdevlab 2.6.18-274.el5 #1 SMP Fri Jul 8 17:36:59 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux
[root@oim11gdevlab tmp]#

I have been trying to install any web browser and was never successful.

Code:
[root@oim11gdevlab tmp]# !346
yum install google-chrome-stable
Loaded plugins: product-id, security, subscription-manager
Updating Red Hat repositories.
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package google-chrome-stable.i386 0:24.0.1312.69-180721 set to be updated
--> Processing Dependency: libcurl.so.4 for package: google-chrome-stable
--> Processing Dependency: libc.so.6(GLIBC_2.11) for package: google-chrome-stable
--> Processing Dependency: libXcomposite.so.1 for package: google-chrome-stable
--> Running transaction check
---> Package google-chrome-stable.i386 0:24.0.1312.69-180721 set to be updated
--> Processing Dependency: libcurl.so.4 for package: google-chrome-stable
--> Processing Dependency: libc.so.6(GLIBC_2.11) for package: google-chrome-stable
---> Package libXcomposite.i386 0:0.3-5.1 set to be updated
--> Finished Dependency Resolution
google-chrome-stable-24.0.1312.69-180721.i386 from google-chrome has depsolving problems
  --> Missing Dependency: libcurl.so.4 is needed by package google-chrome-stable-24.0.1312.69-180721.i386 (google-chrome)
google-chrome-stable-24.0.1312.69-180721.i386 from google-chrome has depsolving problems
  --> Missing Dependency: libc.so.6(GLIBC_2.11) is needed by package google-chrome-stable-24.0.1312.69-180721.i386 (google-chrome)
Error: Missing Dependency: libcurl.so.4 is needed by package google-chrome-stable-24.0.1312.69-180721.i386 (google-chrome)
Error: Missing Dependency: libc.so.6(GLIBC_2.11) is needed by package google-chrome-stable-24.0.1312.69-180721.i386 (google-chrome)
 You could try using --skip-broken to work around the problem
 You could try running: package-cleanup --problems
                        package-cleanup --dupes
                        rpm -Va --nofiles --nodigest
The program package-cleanup is found in the yum-utils package.

 

8 More Discussions You Might Find Interesting

1. Google Chrome OS

Google Chrome For Linux!!!

Its not stable yet but it is in progress guys (: Early Access Release Channels ?(Chromium Developer Documentation)? (1 Reply)
Discussion started by: Dervish
1 Replies

2. Google Chrome OS

google chrome os

i want to install google chrome , but i don't from where can i get the source (2 Replies)
Discussion started by: linux_land
2 Replies

3. Google Chrome OS

Google Chrome Operating System

Google Chrome OS is an open source Google project and will be available to use at no cost in 2010, initially be targeted at netbooks. In 2009, Google will open-source Chrome OS code. The software architecture is Google Chrome running within a new window manager on top of the Linux kernel. ... (20 Replies)
Discussion started by: Neo
20 Replies

4. Google Chrome OS

Google Chrome Mobile?

I know that Google Chrome came out with the Android under a Unix based system, but did it come out yet for Windows Mobile? I have Windows Mobile 6 on my device. (0 Replies)
Discussion started by: Anna Hussie
0 Replies

5. Post Here to Contact Site Administrators and Moderators

Google Chrome is blocking access to UNIX.com

For some reason Google Chrome sees unix.com as dangerous and has start to block it. I need to select advanced and continue on own risk. Can you make an effort to remove unix.com form the list of dangerous site from Google. IE has not this problem. (5 Replies)
Discussion started by: Jotne
5 Replies

6. Red Hat

How to install google-chrome?

Am trying to Install Google-Chrome browser from my server to local machine.. I tried.. # yum install google-chrome-stable* (1 Reply)
Discussion started by: Adhi
1 Replies

7. Linux

Chrome browser no longer working on my debian lenny 5

Hi All, My chrome browser was working correctly on my Debian Lenny 5 PC..Today i downloaded the version from google and tried to install the deb from command line as follows: dpkg -i <latest-chrome-package> The installation failed but now my existing old chrome browser is not starting. ... (2 Replies)
Discussion started by: coolatt
2 Replies

8. Ubuntu

Google chrome not work

Hi Dears i use UBUNTU 16.04 LTS. I download google chrome .deb package and install it but not work. i remove and purge it and install again but not work. i remove .confi too. what kind of details you need? Can help me? (7 Replies)
Discussion started by: alii
7 Replies
GO-LIST(1)						      General Commands Manual							GO-LIST(1)

NAME
go - tool for managing Go source code SYNOPSIS
go list [-e] [-f format] [-json] [ packages ] DESCRIPTION
List lists the packages named by the import paths, one per line. The default output shows the package import path: code.google.com/p/google-api-go-client/books/v1 code.google.com/p/goauth2/oauth code.google.com/p/sqlite OPTIONS
-f The -f flag specifies an alternate format for the list, using the syntax of package template. The default output is equivalent to -f '{{.ImportPath}}'. The struct being passed to the template is: type Package struct { Dir string // directory containing package sources ImportPath string // import path of package in dir Name string // package name Doc string // package documentation string Target string // install path Goroot bool // is this package in the Go root? Standard bool // is this package part of the standard Go library? Stale bool // would 'go install' do anything for this package? Root string // Go root or Go path dir containing this package // Source files GoFiles []string // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles) CgoFiles []string // .go sources files that import "C" CFiles []string // .c source files HFiles []string // .h source files SFiles []string // .s source files SysoFiles []string // .syso object files to add to archive // Cgo directives CgoCFLAGS []string // cgo: flags for C compiler CgoLDFLAGS []string // cgo: flags for linker CgoPkgConfig []string // cgo: pkg-config names // Dependency information Imports []string // import paths used by this package Deps []string // all (recursively) imported dependencies // Error information Incomplete bool // this package or a dependency has an error Error *PackageError // error loading package DepsErrors []*PackageError // errors loading dependencies TestGoFiles []string // _test.go files in package TestImports []string // imports from TestGoFiles XTestGoFiles []string // _test.go files outside package XTestImports []string // imports from XTestGoFiles } -json The -json flag causes the package data to be printed in JSON format instead of using the template format. -e The -e flag changes the handling of erroneous packages, those that cannot be found or are malformed. By default, the list command prints an error to standard error for each erroneous package and omits the packages from consideration during the usual printing. With the -e flag, the list command never prints errors to standard error and instead processes the erroneous packages with the usual printing. Erroneous packages will have a non-empty ImportPath and a non-nil Error field; other information may or may not be miss- ing (zeroed). For more about specifying packages, see go-packages(7). AUTHOR
This manual page was written by Michael Stapelberg <stapelberg@debian.org>, for the Debian project (and may be used by others). 2012-05-13 GO-LIST(1)
All times are GMT -4. The time now is 09:42 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy