Quantcast
Viewing all articles
Browse latest Browse all 8

Answer by jcollado for How to install Chrome browser properly via command line?

If you really want to install Chrome (not Chromium) using apt-get it's possible as explained here:

  • Add google repository to your sources, that is, create a new file under /etc/apt/sources.list.d with the following contents:

    deb http://dl.google.com/linux/chrome/deb/ stable main
  • Get repository key:

    wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
  • Update your sources:

    sudo apt-get update 
  • And install the package:

    sudo apt-get install google-chrome-stable

Note: instead of google-chrome-stable you can also install either google-chrome-beta or google-chrome-unstable packages from the same repository.


Viewing all articles
Browse latest Browse all 8

Trending Articles