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

pgrep Command in Linux: Find and Filter Running Processes

The pgrep command in Linux finds the PIDs of running processes based on a name or other…

11 hours ago

unlink Command in Linux: Remove a Single File or Symlink

The unlink command in Linux removes a single file by deleting its directory entry. It is a…

12 hours ago

How to Check Open Ports in Linux: nmap, netcat, and Bash

When troubleshooting a network connection or configuring a firewall, the first question is whether a…

12 hours ago

ifconfig Command in Linux: Configure Network Interfaces

The ifconfig command in Linux displays and configures network interfaces. It can assign IP addresses, bring interfaces…

13 hours ago

groupdel Command in Linux: Remove a Group and Audit Files

The groupdel command in Linux removes a group from the system. It deletes the group's entry from /etc/group and /etc/gshadow,…

2 days ago

wc Command in Linux: Count Lines, Words, Characters, and Bytes

The wc command in Linux counts lines, words, characters, and bytes in files or standard input. It…

2 days ago