Could not install chrome in my center

I am trying to install chrome in centOS 6.i by running the following commands as root user.

cd / etc / yum.repos.d /

wget http://repos.fedorapeople.org/repos/spot/chromium/fedora-chromium-stable.repo . but when i run the yum install chromium command

its giving me an error

Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
 * base: mirrors.vonline.vn
 * extras: mirrors.digipower.vn
 * updates: mirror.vietoss.com
http://repos.fedorapeople.org/repos/spot/chromium-stable/fedora-6/x86_64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
Trying other mirror.
Setting up Install Process
No package chromium available.
Error: Nothing to do

Help solve the problem.

+3
source share
1 answer

run the following commands (with root or sudoers privileges)

cd /etc/yum.repos.d                                                   ##Moving to a certain directory
wget http://people.centos.org/hughesjr/chromium/6/chromium-el6.repo   ##Download the chromium package
yum install chromium                                                  ##Install the chromium packages in the mentioned directory
+10
source

All Articles