3rd Party Repository: Google Chrome
| Title: | Chrome browser in Google repos |
| Description: | Google Linux repository on dl.google.com. |
| URL: | http://dl.google.com/linux/deb/dists/stable/main |
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/deb/ stable main" >> /etc/apt/sources.list.d/google.list'Setup package with:
sudo aptitude update sudo aptitude install <package name>where <package name> is the name of the package you want to install.
Links
- Google Chrome PPA history
- See all versions of google-chrome-stable in all Ubuntu releases and repositories.
Main PPA Package Versions
UbuntuUpdates arbitrarely picked google-chrome-stable as the main package of this PPA.
| Package | Distribution | Latest Version | Latest Update |
|---|---|---|---|
| google-chrome-stable | stable | 6.0.472.53-r57914 | 2010-09-03 00:21:04 UTC |
Packages in PPA for Stable
See packages for other distributions:
Head packages
| google-chrome-beta | google-chrome-stable | google-chrome-unstable |
Dependent packages
Have you tried installing that PPA? Was that the dream package you had been looking for for months or did it irremediably screw up you whole system? Let everybody know.
Comments
The instructions above won't work. The first set should be:
"wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.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/linux_signing_key.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.