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.
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.
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.
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.
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.
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.
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.
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.
Setting up a LAMP Stack Ubuntu server is one of the fastest ways to host…
Keeping your system credentials updated is one of the simplest ways to improve Linux security.…
A fresh Linux VPS may look ready to use immediately, but skipping the initial security…
If you want to host dynamic PHP websites or applications like WordPress, Laravel, or Magento,…
Java remains one of the most widely used programming platforms for servers, enterprise applications, Android…
Ubuntu users often download software directly from developer websites instead of using the default app…