Issue installing Google chrome on fedora 11 using YUM - linux

While i'm installing Google chrome on my Fedora 11. It give below issue
[root#vi65 /]# yum -y install chromium
Loaded plugins: refresh-packagekit
http://spot.fedorapeople.org/chromium/F11/repodata/repomd.xml: [Errno 14] HTTP Error 404: Not Found
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: chromium. Please verify its path and try again

Fedora 11 has been unsupported for a little while now, so you should not expect people working on the Fedora Project such as Spot to continue maintaining software for it. Either update your system to a supported version of Fedora, or install Chrome instead.

Related

Failed to build gem native extension installing p4ruby Net::ReadTimeout with #<Socket:fd 9> (Net::ReadTimeout)

I´m trying to install the p4ruby gem on our RHEL 7.9 server and I keep getting the "failed to build gem native extension" error.
Here is what the log contains this message:
have_library: checking for -lsupc++... -------------------- no
I have installed the Development Tools with
yum group install "Development tools"
And I´m using RVM with Ruby Version 2.7.1.
What am I missing?
Edit:
Thanks to Knud Larsens hint
yum install gcc-c++ libstdc++-static
fixed the previous issue.
But the building still doesn´t work
`rbuf_fill': Net::ReadTimeout with #<Socket:fd 9> (Net::ReadTimeout)
is what I get now.

chrome installation on centos linux using shell script

I am installing google Chrome web browser on my centos VM by writing a shell script to do so. I have downloaded the following :
google-chrome-stable_current_x86_64.rpm
And when I try to install this package I get the following error:
warning: google-chrome-stable_current_x86_64.rpm: Header V4 DSA/SHA1 Signature, key ID 7fac5991: NOKEY
error: Failed dependencies:
lsb >= 4.0 is needed by google-chrome-stable-58.0.3029.110-1.x86_64
libnss3.so(NSS_3.19.1)(64bit) is needed by google-chrome-stable-58.0.3029.110-1.x86_64
libstdc++.so.6(GLIBCXX_3.4.18)(64bit) is needed by google-chrome-stable-58.0.3029.110-1.x86_64
libstdc++.so.6(GLIBCXX_3.4.14)(64bit) is needed by google-chrome-stable-58.0.3029.110-1.x86_64
libstdc++.so.6(GLIBCXX_3.4.15)(64bit) is needed by google-chrome-stable-58.0.3029.110-1.x86_64
I realized that I should download many different packages before that I can install Chrome.
Is there any way to install these packages all together without having to install them one by one?
Using yum command to install Chrome Browser on the Centos system.
yum localinstall google-chrome-stable_current_x86_64.rpm
You can check out this to add the source for Chrome

shared libraries libgconf-2.so.4 is missing

I want to install chromedriver in one of the AWS EC2 instance which is linux(Red Hat Enterprise Linux Server release 6.7 Santiago - 64 bit). While installing the chromedriver, we ran into issue due to missing packages. I could find the package here but this in turn requires many other packages. Using any other AMI is not an option.
Error is -
error while loading shared libraries libgconf-2.so.4 cannot open shared object file
I am using Ubuntu x64 and yum didn't work for me. But I found somebody mentioning simply use
$sudo apt install libgconf-2-4
worked for me to install the libgconf.
Please ask yum for the file, libgconf-2.so.4 : $ yum provides */libgconf-2.so.4
Install GConf2 : # yum install GConf2
Packages http://mirror.centos.org/centos/6.8/os/ ... and updates http://mirror.centos.org/centos/6.8/updates/
The chromedriver depends on the same packages / files as GConf2, and then some. Please see for yourself : $ ldd chromedriver , where 'chromedriver' is the unzipped executable.
EDIT :
Solution for the chromedriver issue : Install a chromedriver for RHEL 6, chromedriver-31.0.1650.63-1.el6.x86_64.rpm https://drive.google.com/file/d/0B7S255p3kFXNX1c0UWlGOWpZOHM/view?usp=sharing
Please download the package, and 1) cd Downloads/ 2) yum install chromedriver-31.0.1650.63-1.el6.x86_64.rpm ... and you have /usr/local/bin/chromedriver
P.S. : The EL6 chromedriver was built from the source package chromium-31.0.1650.63-1.el6.src.rpm
You might want to read this CentOS thread about your GLIBCXX_3.4.15. Especially apropos is this answer on the thread, especially the FAQ it references.
CentOS (which aims to be as compatible with RHEL as possible) is a curated LTS distribution (as is RHEL). You might find a version of chromedriver compiled for RHEL 6 in one of the many repositories. If not, you'll probably have to build it yourself.

Installing GlusterFS latest version?

I've only limited experience with linux package management and I'm struggling on what should be a simple package install of glusterfs.
First I enable the repo
wget -P /etc/yum.repos.d http://download.gluster.org/pub/gluster/glusterfs/LATEST/RHEL/glusterfs-epel.repo
Then I install with:
yum -y install glusterfs-server
However I believe there is some issue with the latest package references:
yum install glusterfs
Loaded plugins: priorities, update-motd, upgrade-helper
http://download.gluster.org/pub/gluster/glusterfs/3.7/LATEST/EPEL.repo/epel-latest/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
Trying other mirror.
http://download.gluster.org/pub/gluster/glusterfs/3.7/LATEST/EPEL.repo/epel-latest/noarch/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
Trying other mirror.
No package glusterfs available.
Error: Nothing to do
I've tried editing the glusterfs-epel.repo to override the based urls but I've not been able to install a working package.
I'm on a fresh Amazon AMI:
cat /etc/*elease
NAME="Amazon Linux AMI"
VERSION="2015.09"
ID="amzn"
ID_LIKE="rhel fedora"
VERSION_ID="2015.09"
PRETTY_NAME="Amazon Linux AMI 2015.09"
ANSI_COLOR="0;33"
CPE_NAME="cpe:/o:amazon:linux:2015.09:ga"
HOME_URL="http://aws.amazon.com/amazon-linux-ami/"
Amazon Linux AMI release 2015.09
The issue was fixed via enabling EPEL correctly
http://website-humblec.rhcloud.com/gluster-3-7-upgrade-in-el-systems/
If you are on Centos, you can also do:
yum install centos-release-gluster37
Or a newer release.
The latest version of GlusterFS as of 2020/10/14 :-
vatsa#vatsa-VirtualBox:~$ glusterfs --version
glusterfs 2020.10.14
Repository revision: git://git.gluster.org/glusterfs.git
Copyright (c) 2006-2016 Red Hat, Inc. <https://www.gluster.org/>
GlusterFS comes with ABSOLUTELY NO WARRANTY.
It is licensed to you under your choice of the GNU Lesser
General Public License, version 3 or any later version (LGPLv3
or later), or the GNU General Public License, version 2 (GPLv2),
in all cases as published by the Free Software Foundation.
// I have the source code version not the package.

Centos install chrome failed

I follow this step to install chrome on centos linux, but when I run application yum install google-chrome-stable
I get this:
error: package:google-chrome-stable-35.0.1916.153-1.x86_64(google-chrome) requires: libstdc++.so.6
I have checked my file libstdc++.so.6 at /usr/lib
So, anyone known how to fix it?
Please provide yum update before installing anything (i.e. particularly after updating yum repository).
In your case, you should give
yum update
then, proceed with installing the software required, it might fix the issue
yum install google-chrome-stable
The link you submitted specifically states:
Update : Sadly, the Google Chrome browser no longer supports the most famous commercial distribution RHEL 6.x and its free clones such as CentOS and Scientific Linux.
Yes, they’ve discontinued support for RHEL 6.X version as of Google Chrome and on other side, latest Firefox and Opera browsers run successfully on the same platforms.
So there, you can't install Chrome on (I assume) CentOS 6. I get the same error you posted when trying on my CentOS 6.7 system.
You have to upgrade to CentOS 7, use another browser, or use this script http://chrome.richardlloyd.org.uk/ (haven't tested it myself but countless other people have used it).
Please check libstdc++.so.6 in /usr/lib64/ directory.

Resources