Maintenance - Scheduled Maintenance – pro-hosting-001 (from 2026-06-13 16:00:00 to 2026-06-13 17:00:00) - More details
Bare-metal servers with AMD Ryzen™ 9 9950X processor are now available in our NL location. Click here to order.

How to Install Google Chrome on Ubuntu 26.04

  • published_on 2026 Июнь 11

Google Chrome remains one of the most popular web browsers thanks to its speed, reliability, and integration with Google services. If you've recently upgraded to Ubuntu 26.04, installing Chrome lets you continue using the same browser experience you're familiar with on Windows, macOS, or another Linux distribution.

Since Google Chrome is proprietary software, it isn't included in Ubuntu's default software repositories. However, Google provides an official Debian package that makes installation straightforward and enables future updates through Ubuntu's APT package manager.

In this guide, we'll walk through the process of downloading, installing, verifying, and launching Google Chrome on Ubuntu 26.04.

Choose Ubuntu 26.04 VPS hosting in Lithuania, the Netherlands, the USA, or the UK. Fast NVMe storage delivers excellent performance, low latency, and reliable speed for your projects. Perfect for websites, applications, testing environments, and business infrastructure.
Get Ubuntu 26.04 VPS

Prerequisites

Before installing Chrome, make sure you have the following:

  • A system running Ubuntu 26.04

  • A user account with sudo privileges

  • An active internet connection

Step 1: Update the Package Index

Before installing Google Chrome, update the local package index to ensure your system has the latest package metadata.

sudo apt update

Step 2: Download the Latest Google Chrome Package

Download the latest stable Google Chrome package from Google's official source.

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

This command downloads the latest stable Google Chrome .deb package to your current working directory.

The package contains the files required to install Google Chrome on Ubuntu.

Step 3: Install Google Chrome

Install the downloaded package using APT.

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

APT automatically resolves and installs any required dependencies.

During installation, Google’s package repository is added to the system, allowing Google Chrome to receive future updates through APT.

Step 4: Verify the Installation

Verify that Google Chrome was installed successfully.

google-chrome --version

Expected output:

img-1781179291-6a2aa39bd5242.webp

Step 5: Launch Google Chrome

After installation, launch Google Chrome from either the graphical desktop environment or the terminal.

Graphical Desktop

  • Open the Applications menu

  • Search for Google Chrome

  • Select the launcher icon

img-1781179292-6a2aa39c10004.webp

Terminal

Simply run:

google-chrome

When Google Chrome opens for the first time, you may see the welcome screen, where you can optionally sign in with your Google account, as shown in the image below:

img-1781179292-6a2aa39c4f994.webp

 

Set Google Chrome as the Default Browser (Optional)

If you want Google Chrome to open web links by default, set it as the system's default browser.

xdg-settings set default-web-browser google-chrome.desktop

Alternatively, configure the default browser through Ubuntu's Settings application.

Updating Google Chrome

After installation, Google Chrome receives updates through the normal APT upgrade process.

Update the package index:

sudo apt update

Install available updates:

sudo apt upgrade

Chrome updates are delivered through Google's repository, which was added during installation.

You do not need to download and reinstall a new Chrome .deb package for future browser updates. 

Uninstalling Google Chrome

If you no longer need Google Chrome, remove it using APT.

Remove Google Chrome while keeping package configuration files:

sudo apt remove google-chrome-stable

If you also want to remove associated package configuration files, use:

sudo apt purge google-chrome-stable

After removing the package, clean up unused dependencies:

sudo apt autoremove

Conclusion

In this guide, we installed Google Chrome on Ubuntu 26.04 using Google's official package, verified the installation, launched the browser, and reviewed how Google Chrome receives updates through APT. We also covered how to remove Google Chrome if it is no longer needed.

For more in-depth tutorials, visit the BaCloud blog, where you’ll find helpful guides.

« Назад