Install Google Chrome on Linux Ubuntu
Best way to install is to add the Google Chrome PPA to repository and to install using the apt-get command.
1. Enable Google Apt-Get repository
Add Linux repository public key from Google:
$ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
When added, run the command below:
$ sudo gedit /etc/apt/sources.list.d/google.list
Then copy and paste the line below into the file and save:
$ deb http://dl.google.com/linux/chrome/deb/ stable main
After saving the file, run the commands below to update your system:
$ sudo apt-get update
Or:
$ sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
2. Install Google Chrome with Apt-Get
Install Google Chrome stable version:
$ sudo apt-get install google-chrome-stable
Install Google Chrome beta version:
$ sudo apt-get install google-chrome-beta
Install Google Chrome unstable version:
$ sudo apt-get install google-chrome-unstable
Categories & Tags
Related
- Extract MKV (Matroska) subtitles on Linux Ubuntu
- Install Eclipse on Linux Ubuntu
- Install Java (Oracle) on Linux Ubuntu
- Install Google Chrome on Linux Fedora
Share