How To

Install Google Chrome on Ubuntu 20.04: Download and Setup Guide

Google Chrome is the most widely used web browser in the world. It is fast, secure, and syncs your bookmarks, passwords, history, and open tabs across all your devices when you sign in with a Google account.

Chrome also includes a built-in password manager, a developer tools panel, and support for thousands of extensions from the Chrome Web Store. It is available on Windows, macOS, Android, iOS, and Linux.

This guide shows you how to install Google Chrome on Ubuntu 20.04 and keep it updated.

<strong>Note:</strong>&nbsp;Chrome is not open-source and is not in the standard Ubuntu repositories. You install it using the official&nbsp;<code>.deb</code>&nbsp;package from Google.

Install Google Chrome on Ubuntu

Download the latest Chrome .deb package using wget:

bashwget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

This always grabs the current stable release. Once the download finishes, install it:

bashsudo apt install ./google-chrome-stable_current_amd64.deb

Enter your password when prompted. The installation completes in a few seconds.

Google Chrome is now installed on your Ubuntu machine. The installer also adds the official Google Chrome apt repository to your system in the background. This is what allows Chrome to update automatically through the standard apt update system.

<strong>Tip:</strong>&nbsp;If you have bookmarks saved in another browser like Firefox, Chromium, or Opera, Chrome can import them on first launch. You do not need to start from scratch.

Launch Chrome and Sign In

Open the Activities menu, type “Google Chrome”, and click the icon to launch it.

You can also start Chrome from the terminal:

bashgoogle-chrome

The first time you open Chrome, it will ask:

  • Whether you want to make Chrome your default browser
  • Whether you want to send usage and crash data to Google

Choose your preference and click OK.

After that, you will see the Chrome welcome screen. From here, you can:

  • Sign in with your Google account to sync bookmarks and settings
  • Set up your homepage and preferred search engine
  • Install extensions from the Chrome Web Store

Signing in is optional. But if you use Chrome on more than one device, signing in keeps everything in sync automatically.

Keep Google Chrome Updated

During install, Chrome adds its own repository to your system. You can see it here:

bashcat /etc/apt/sources.list.d/google-chrome.list

Output:

deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main

This means Chrome updates through Ubuntu’s standard update system. When a new version is released, you will see it in the Software Update tool, or you can update it manually:

bashsudo apt updatesudo apt upgrade

Google releases a new stable Chrome version roughly every four weeks. Keeping it updated ensures you have the latest security patches and browser features.

Google Chrome is now installed and ready on your Ubuntu desktop. It works well right out of the box and gets even more useful once you sign in with your Google account. If you are switching from a different browser, the import tool in Chrome settings makes moving your bookmarks and saved passwords quick and easy. Got questions? Leave a comment below.

Cyber Defence

Recent Posts

Upgrade to Ubuntu 20.04 LTS: Prepare, Update, and Confirm

Ubuntu 20.04 LTS (code name Focal Fossa) was released on April 23, 2020. It is a…

16 minutes ago

Install Java on Ubuntu 20.04: OpenJDK 11, JDK 8, and JAVA_HOME

Java is one of the most widely used programming languages in the world. It runs on…

38 minutes ago

Install Ubuntu on Raspberry Pi: Flash, Configure, and Boot

Raspberry Pi is the most popular single-board computer ever made. It is small, affordable, and surprisingly…

43 minutes ago

Install pip on Ubuntu 20.04: Python 3, Python 2, and Usage Guide

pip is Python's package manager. It lets you search, download, and install packages from the Python Package…

51 minutes ago

Install MySQL on Ubuntu 20.04: Setup, Security, and Root Access

MySQL is the most popular open-source relational database management system. It is fast, reliable, and a…

1 day ago

Install Git on Ubuntu 20.04: Apt, Source, and Configuration

Git is the most widely used version control system in the world. It was created by…

1 day ago