3rd Party Repository: Google Chrome
This repository is available for: Stable
| Title: | Chrome browser in Google repos |
| Description: | Google Linux repository on dl.google.com. |
| Daily Build: | no |
Setup key with:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
Setup repository with:
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'Setup package with:
sudo apt-get update sudo apt-get install <package name>where <package name> is the name of the package you want to install.
Links
| PPA History | All Versions of "google-chrome-stable" |
Most recent updates in Google Chrome PPA (Stable)
| Date | Package | Version |
|---|---|---|
| 2013-05-24 18:09:15 UTC | google-chrome-unstable | 29.0.1516.3-r201887 |
| 2013-05-23 16:10:07 UTC | google-chrome-beta | 28.0.1500.20-r201172 |
| 2013-05-21 20:09:17 UTC | google-chrome-unstable | 28.0.1500.20-r201172 |
| 2013-05-21 17:09:32 UTC | google-chrome-stable | 27.0.1453.93-r200836 |
| 2013-05-20 20:09:15 UTC | google-chrome-beta | 27.0.1453.93-r200836 |
Google-chrome-stable Versions in Google Chrome PPA
UbuntuUpdates arbitrarily picked google-chrome-stable as the main package of this PPA.
| Package | Release | Latest Version | Latest Update |
|---|---|---|---|
| google-chrome-stable | stable | 27.0.1453.93-r200836 | 2013-05-21 17:09:32 UTC |
Packages in PPA for Stable
See packages for selected release: Stable
Deleted packages are displayed in grey.
Head packages
| google-chrome-unstable | google-chrome-beta | google-chrome-stable |

Older Comments
The instructions above won't work. The first set should be:
"wget -q -O - https://dl-ssl.google.com/linux/linuxsigningkey.pub | sudo apt-key add - && apt-get update"
The second set should be:
"sudo -e /etc/apt/sources.list.d/google.list", add the line "deb http://dl.google.com/linux/deb/ stable main" (without the quotes) to the file, save, and quit.
The third set is correct.
Sorry, even I got it wrong. This is the correct first set:
"wget -q -O - https://dl-ssl.google.com/linux/linuxsigningkey.pub | sudo apt-key add - && sudo apt-get update"
@Jon: thanks. You're right, I fixed the instructions. For the second set, I think you can do "sudo sh -c..." to deal with the redirection.
The http address does not exist I get a 404 error when cutting and pasting in a browser for both of the below addresses
http://dl.google.com/linux/chrome/deb/ 404 http://dl.google.com/linux/deb/ 404
@CDub50: http://dl.google.com/linux/deb/ is not a URL that you can directly use. Instead, the update-manager, aptitude or apt-get will use it to construct the real URL that will valid and where updates are available.
The changelogs for Google Chrome can be found at http://googlechromereleases.blogspot.com.
@Jon:
wget -O - https://dl-ssl.google.com/linux/linuxsigningkey.pub
ERROR 404: Not Found.
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub
(with underscores) is correct, however the key seems rather old, 2007.
Just so you know, it's now https://dl-ssl.google.com/linux/linux_signing_key.pub
thanks for the above instructions and corrective comments guys. worked like a charm on Mint 9 LXDE :)