Ye blog of Adam Wright
DIY, tutorials, stuff for geeks, all updated when I have the time to spare.
Tag Archives: sources.list
How to install Google Chrome in Ubuntu 10.04
10/23/2012
Posted by on I recently made the switch from Firefox to Chrome, and decided to install it on all my machines. I had some problems getting it installed for Ubuntu 10.04 at first, but then I found this post that spelled it all out.
Here’s the steps in simple, copy/paste format:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo apt-get update -y
sudo apt-get install -y google-chrome-stable
Or if you’d like one long line:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - && sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' && sudo apt-get update -y && sudo apt-get install -y google-chrome-stable
That should work.
Again, thanks to UbuntuUpdates for original post: UbuntuUpdates – PPA: Google Chrome
Check them out for more PPA sources and install tutorials!