Google chrome on Fedora 11 Leonidas.

2010-06-24 1 min read Fedora

Earlier I had posted a article on installing <a href="http://blog.amit-agarwal.co.in/2009/07/20/chrome-chromium-on-linux-repo/" target="_blank">chromium on Linux. Chromium is the open source version of the browser which is used by Google to develop its famous browser Chrome. Now chrome rpm is available from google site to install on F11. Here&#8217;s how to do it. First we will add a repo for google. As root user do the following:

cat «EOF >/etc/yum.repos.d/google.repo

[google]
name=Google – i386
baseurl=http://dl.google.com/linux/rpm/stable/i386
enabled=1
gpgcheck=1

Continue reading

Chrome – Chromium on Linux (repo)

2009-12-19 1 min read Fedora

Fedora people put up a repo for the chrome web browser and it is quite frequently updated. All you need to do to install the browser is following:

sudo vi /etc/yum.repos.d/chrome.repo

and add the following lines

name=Chromium Test Packages
baseurl=http://spot.fedorapeople.org/chromium/F$releasever/
enabled=1
gpgcheck=0

Once this is done, you can install the browser with yum as follows:

sudo yum install chromium

[[danscartoon]]