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
bup-margin(1)						      General Commands Manual						     bup-margin(1)

NAME
bup-margin - figure out your deduplication safety margin SYNOPSIS
bup margin [options...] DESCRIPTION
bup margin iterates through all objects in your bup repository, calculating the largest number of prefix bits shared between any two entries. This number, n, identifies the longest subset of SHA-1 you could use and still encounter a collision between your object ids. For example, one system that was tested had a collection of 11 million objects (70 GB), and bup margin returned 45. That means a 46-bit hash would be sufficient to avoid all collisions among that set of objects; each object in that repository could be uniquely identified by its first 46 bits. The number of bits needed seems to increase by about 1 or 2 for every doubling of the number of objects. Since SHA-1 hashes have 160 bits, that leaves 115 bits of margin. Of course, because SHA-1 hashes are essentially random, it's theoretically possible to use many more bits with far fewer objects. If you're paranoid about the possibility of SHA-1 collisions, you can monitor your repository by running bup margin occasionally to see if you're getting dangerously close to 160 bits. OPTIONS
--predict Guess the offset into each index file where a particular object will appear, and report the maximum deviation of the correct answer from the guess. This is potentially useful for tuning an interpolation search algorithm. --ignore-midx don't use .midx files, use only .idx files. This is only really useful when used with --predict. EXAMPLE
$ bup margin Reading indexes: 100.00% (1612581/1612581), done. 40 40 matching prefix bits 1.94 bits per doubling 120 bits (61.86 doublings) remaining 4.19338e+18 times larger is possible Everyone on earth could have 625878182 data sets like yours, all in one repository, and we would expect 1 object collision. $ bup margin --predict PackIdxList: using 1 index. Reading indexes: 100.00% (1612581/1612581), done. 915 of 1612581 (0.057%) SEE ALSO
bup-midx(1), bup-save(1) BUP
Part of the bup(1) suite. AUTHORS
Avery Pennarun <apenwarr@gmail.com>. Bup unknown- bup-margin(1)
All times are GMT -4. The time now is 06:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy