How to Install Google Chrome on Ubuntu 24.04

Anastasios Antoniadis

Google Chrome is one of the most popular web browsers, known for its speed, security, and extensive extension support. While Ubuntu 24.04 comes with Firefox pre-installed, many users prefer Chrome for its seamless integration with Google services. In this guide, we will walk you through the steps to install Google Chrome on Ubuntu 24.04.

Prerequisites

Before proceeding with the installation, ensure that:

  • You have a working internet connection.
  • You have sudo privileges.
  • Your system is up to date.

Step 1: Update Your System

Before installing any software, it’s a good practice to update your system’s package list. Open a terminal (Ctrl + Alt + T) and run:

sudo apt update && sudo apt upgrade -y

Step 2: Download Google Chrome

Google Chrome is not available in Ubuntu’s default repositories, so we need to download the official .deb package from Google.

Run the following command to download the latest stable version of Google Chrome:

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

Step 3: Install Google Chrome

Once the download is complete, install Chrome using the dpkg package manager:

sudo dpkg -i google-chrome-stable_current_amd64.deb

If you encounter any dependency issues, resolve them by running:

sudo apt --fix-broken install

Step 4: Verify the Installation

To check if Chrome was installed successfully, run:

google-chrome --version

This should output the installed version of Google Chrome.

Step 5: Launch Google Chrome

You can start Google Chrome in several ways:

  • From the terminal by running:google-chrome &
  • From the application menu by searching for “Google Chrome.”

Step 6: Set Google Chrome as Default Browser (Optional)

If you want to set Google Chrome as your default browser, go to:

  • Settings > Default Applications
  • Change the Web Browser to Google Chrome

Alternatively, you can set it using the terminal:

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

Step 7: Enable Automatic Updates (Recommended)

To ensure you receive security updates, add Google’s official repository to your system:

sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list'

Then, update the package list:

sudo apt update

Conclusion

You have successfully installed Google Chrome on Ubuntu 24.04. Now, you can enjoy a fast and feature-rich browsing experience. Happy browsing!

If you encounter any issues, let us know in the comments below!

Anastasios Antoniadis
Find me on
Latest posts by Anastasios Antoniadis (see all)

Leave a Comment