Install Google Chrome in Ubuntu
Answer:
To install Google Chrome in Ubuntu, the simplest way is to us PPA
E.g.
1. Add the key and URL
# 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'
2. Install it
# sudo apt-get update
# sudo apt-get install google-chrome-stable
Done.