Linux

Install Google Chrome on Ubuntu in Minutes

Installing Google Chrome on Ubuntu systems is a simple process that gives users access to one of the fastest and most widely used web browsers available today. Chrome offers excellent performance, built-in security features, and seamless syncing across devices, making it a preferred browser for both casual users and developers.

Ubuntu 24.04 does not include Chrome in its default repositories because the browser is proprietary software. However, Google provides an official package that can be installed safely in just a few steps.

Why Use Google Chrome on Ubuntu Systems?

Many Linux users choose Chrome because of its speed, extension ecosystem, and compatibility with modern websites. It also integrates well with Google services such as Gmail, Drive, and YouTube.

Another major advantage is automatic updates. Once installed, Chrome adds Google’s repository to your Ubuntu system so future browser updates arrive through the standard package manager.


Download Google Chrome on Ubuntu

The first step is downloading the official Debian package directly from Google’s servers.

Open a terminal and run:

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

This command downloads the latest stable release for 64-bit Ubuntu systems.


Install Google Chrome Package

After downloading the package, install it using APT:

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

Ubuntu may ask for your password before completing the installation.

If dependency errors appear, repair them with:

sudo apt --fix-broken install

Then rerun the installation command.


Start Google Chrome on Ubuntu

Once installation finishes, you can launch Chrome from the applications menu or directly from the terminal.

Run:

google-chrome

The first launch usually asks whether Chrome should become the default browser. You can also sign in with your Google account to sync bookmarks, passwords, and browsing history.


Set Google Chrome as Default Browser

To make Chrome the default browser from the terminal, use:

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

Verify the setting with:

xdg-settings get default-web-browser

This ensures links automatically open in Chrome across your Ubuntu desktop environment.


Keep Google Chrome Updated

One useful feature of the official package is automatic repository integration. Chrome updates are delivered through Ubuntu’s regular update process.

Update your system with:

sudo apt update && sudo apt upgrade

This keeps your browser secure and updated with the latest performance improvements.


Conclusion

Installing Google Chrome on Ubuntu 24.04 systems takes only a few minutes using the official Debian package. Once installed, users benefit from automatic updates, strong security features, and excellent compatibility with modern web applications.

For users who prefer fully open-source alternatives, Chromium remains another solid option on Ubuntu Linux.

Cyber Defence

Recent Posts

Best OSINT Tools for Journalists 2026: Verify Sources, Images and Claims

Journalists use OSINT to verify public information before publishing. In 2026, misinformation, AI-generated images, fake…

4 hours ago

Install Docker on Ubuntu 20.04: Complete Step-by-Step Guide

Docker is an open-source platform that lets you package and run applications inside containers. Each container…

14 hours ago

Install PostgreSQL on Ubuntu: Database Setup and Admin Guide

PostgreSQL (often called Postgres) is an open-source relational database system. It supports advanced features like JSON…

15 hours ago

Install Xrdp Remote Desktop on Ubuntu: Setup and Connect

Xrdp is an open-source server that lets you connect to your Ubuntu machine from another computer…

15 hours ago

Tomcat 9 on Ubuntu 20.04: Install, Configure, and Start

Apache Tomcat is an open-source web server and Java servlet container. It is one of the…

15 hours ago

Automatic Updates on Ubuntu: Set Up unattended-upgrades

Keeping your Ubuntu system updated is one of the best ways to protect it. Security…

17 hours ago