Google Chrome on Ubuntu-12.04

On linux(Ubuntu) you can install Chromium browser using apt-get, but to install Chrome you need to run some commands to make it install using apt-get.
First, get a repository key and add it to your system.

1
$ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

And, add the google repository to your source list.

1
$ sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'

Next, update your sources.

1
sudo apt-get update

Finally, install google-chrome.

1
sudo apt-get install google-chrome-stable

Hope, this will be helpful for you.

Comments