If you need a fast, feature-rich web browser on your Ubuntu 26.04 system, Google Chrome is a popular choice. While Ubuntu ships with Firefox by default, many users prefer Chrome for its tight integration with Google services, extensive extension library, and consistent cross-platform experience. In this tutorial, we will walk through how to install Google Chrome on Ubuntu 26.04, configure it as your default browser, and keep it updated. If you are looking to install Google Chrome on a different Linux distribution, check out our comprehensive Google Chrome installation guide for Linux covering Ubuntu 24.04, Fedora, Linux Mint, Arch Linux, CentOS, and more.
Software Requirements and Linux Command Line Conventions
Category
Requirements, Conventions or Software Version Used
System
Ubuntu 26.04 Resolute Raccoon
Software
Google Chrome (latest stable)
Other
Privileged access to your Linux system as root or via the sudo command. An active Internet connection.
Conventions
# – requires given linux commands to be executed with root privileges either directly as a root user or by use of sudo command $ – requires given linux commands to be executed as a regular non-privileged user
To install Google Chrome on Ubuntu 26.04, download the official .deb package and install it with apt. The installation automatically adds the Google repository for future updates.
Quick Steps to Install Google Chrome on Ubuntu 26.04
Installing Google Chrome on Ubuntu 26.04 via Command Line
Google Chrome is not available in the default Ubuntu repositories because it is proprietary software. Therefore, you need to download the official .deb package directly from Google. The command line method is the most straightforward approach to install Google Chrome on Ubuntu 26.04.
Update your system packages: Before installing any new software, it is good practice to update your package index:
$ sudo apt update
Download the Google Chrome .deb package: Use wget to download the latest stable version of Google Chrome directly from Google’s servers:
IMPORTANT
The ./ prefix is required when installing a local .deb file with apt. Without it, apt will search the repositories instead of the local filesystem.
Verify the installation: Confirm that Google Chrome was installed successfully by checking its version:
IMPORTANT
During installation, Google Chrome automatically adds its official APT repository to your system at /etc/apt/sources.list.d/google-chrome.list. This ensures that Chrome receives updates through the standard apt update && apt upgrade process.
Launching Google Chrome on Ubuntu 26.04
After installation, you can launch Google Chrome using several methods.
From the Activities menu: Click Activities in the top-left corner (or press the Super key), type Chrome, and click the Google Chrome icon.
From the terminal: Run the following command to start Chrome:
$ google-chrome
To launch Chrome in the background without blocking your terminal, append an ampersand:
$ google-chrome &
On its first launch, Chrome will ask whether you want to set it as the default browser and whether to send usage statistics to Google. Adjust these options according to your preference.
When you installed the .deb package, Google Chrome automatically added its official repository to your system. Consequently, Chrome updates are handled through the standard APT package management workflow. To update Chrome along with all other system packages, simply run:
Additionally, Chrome checks for updates in the background and will notify you when a new version is available. However, applying the update still requires the APT commands shown above.
Uninstalling Google Chrome from Ubuntu 26.04
If you decide to remove Google Chrome from your system, follow these steps.
Remove the Google Chrome package: Use apt to purge Chrome along with its configuration files:
$ sudo apt purge google-chrome-stable
Remove the Google repository: Delete the APT source file that was added during installation:
You have successfully learned how to install Google Chrome on Ubuntu 26.04 using the command line. The installation process is straightforward: download the official .deb package from Google and install it with apt. Chrome’s automatic repository setup ensures you always receive the latest updates through the standard Ubuntu update mechanism. If you need to install Chrome on other Linux distributions, refer to our Google Chrome installation guide for Linux for distribution-specific instructions.
Frequently Asked Questions
Is Google Chrome available in the Ubuntu repositories? No, Google Chrome is proprietary software and is not included in the official Ubuntu repositories. You must download the .deb package directly from Google. However, the open-source Chromium browser is available in the Ubuntu repositories as an alternative.
What is the difference between Google Chrome and Chromium on Ubuntu 26.04? Google Chrome is a proprietary browser built on the open-source Chromium project. Chrome includes additional features such as automatic updates via its own repository, built-in support for certain media codecs (like AAC and H.264), and integration with Google services. Chromium lacks these proprietary components but is fully open source.
Can I install Google Chrome on a 32-bit Ubuntu system? No, Google discontinued 32-bit Linux builds of Chrome in 2016. The .deb package is only available for 64-bit (amd64) systems. All modern Ubuntu 26.04 installations run on 64-bit architecture.
How do I install a beta or development version of Google Chrome? Google provides separate packages for the beta and development channels. Replace stable with beta or unstable in the download URL. For example: wget https://dl.google.com/linux/direct/google-chrome-beta_current_amd64.deb. You can install multiple channels side by side.
Why does Chrome ask to be the default keyring manager on first launch? Chrome uses the GNOME Keyring to securely store passwords and cookies. On first launch, it may prompt you to create or unlock a keyring. This is normal behavior and helps protect your stored credentials.