Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

Is there an easier way to install Chromium 16 (or upgrade 15 to 16) than what is described here?

Furthermore, is there an easier way to stay upto date with current Chromium releases rather than having to re-build Chromium each release? (a script which automatically grabs and installs the latest build possibly?).

share|improve this question
1  
They finally updated Chromium to the main repos (v20 -> v23). – Mechanical snail Jan 14 at 18:57

7 Answers

up vote 22 down vote accepted
+25

Chromium is currently not built for the chromium-daily PPA, which makes using it a bit of a security issue. Unless you can find a better PPA that stays up to date, I'd recommend you use the repo version of Chromium. Using an old browser on the internet will get you hacked. See:

Does someone know why the Chromium daily package isn't build anymore?

For the latest stable of Chromium click the button here:

https://apps.ubuntu.com/cat/applications/chromium-browser/

share|improve this answer
Should I pay attention to the stable version numbers? The Chromium version number is lower than the Chrome. But Chromium should be at least as up-to-date and secure? – Victor9098 Jan 28 at 20:47

There is an unofficial PPA for the Chromium stable, which is more recent than the official source:

sudo add-apt-repository ppa:a-v-shkop/chromium
sudo apt-get update
sudo apt-get install chromium-browser

(Click here for instructions on using PPAs.)

See here for the development release:

share|improve this answer

Here are the chromium istructions with the new stable chromium ppa

Add the stable PPA and install Chromium using the following commands:

sudo add-apt-repository ppa:a-v-shkop/chromium
sudo apt-get update
sudo apt-get install chromium-browser

Or, if you want the latest dev builds, use the following commands:

sudo add-apt-repository ppa:a-v-shkop/chromium-dev
sudo apt-get update
sudo apt-get install chromium-browser

Source: http://www.webupd8.org/2012/09/new-chromium-stable-and-development.html

share|improve this answer
please improve your answer by writing instructions here in case this link is down to help other users – user61928 Oct 3 '12 at 8:10

I've asked a similar question. What I do is use the daily zip archives. Within Chromium I install the Chromium Update plugin. It doesn't auto install or anything but I have quick access to the latest zip which I simply extract to the current location (in my case ~/opt/).

share|improve this answer

Currently, the only way to get it that I can think of is by getting the source code and building it yourself. The packages in the chromium stable ppa failed to build. That was a week ago and I have already wrote an email to the maintainer of that ppa trying to make him aware of that problem but he would not write back…

share|improve this answer
I filed a report for the failing PPA builds: bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/910561 – Piet Delport Jan 1 '12 at 14:56

Just add this repository to your software sources by entering the command below in the terminal (Ctrl+Alt+T).

sudo add-apt-repository ppa:chromium-daily/stable
sudo apt-get update

Then:

sudo apt-get install chromium-browser

Right now this will not give you the latest Chromium, but the latest in the PPA which is 18.0.1025.x.

share|improve this answer

If you need exactly Chromium use this PPA

share|improve this answer

protected by Community Sep 7 '12 at 8:43

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.