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

git fetch vs git pull: How They Work and When to Use Each

Both git fetch and git pull talk to a remote repository, but they do very different things to your…

7 days ago

git cherry-pick Command: Apply Commits from Another Branch

Sometimes the change you need already exists, just on the wrong branch. A hotfix lands…

7 days ago

Best Email APIs for Secure Business Email: Why Developers Are Moving Beyond SMTP

Email is still one of the most important communication channels inside modern applications. Password resets,…

1 week ago

Nginx Commands in Linux: Start, Stop, Reload, Test, and Log

Nginx is a high-performance web server and reverse proxy trusted by some of the largest…

2 weeks ago

ufw Command in Linux: Manage Firewall Rules with Examples

ufw (Uncomplicated Firewall) sits on top of iptables (or nftables on newer systems) and replaces…

2 weeks ago

who Command in Linux: Show All Logged-In Users and Sessions

When you share a server with a team or investigate unexpected activity, the first question…

2 weeks ago