How To Install Google Chrome on Ubuntu 24.04 LTS
In this tutorial, we will show you how to install Google Chrome on Ubuntu 24.04 LTS. Ubuntu 24.04, the latest long-term support (LTS) release of the popular Linux distribution, has brought forth a plethora of improvements and enhancements to the user experience. In today’s digital age, web browsers play a crucial role in our daily computing tasks, serving as gateways to the vast expanse of the internet. Among the myriad of browser options available, Google Chrome stands out as a preferred choice for many users, thanks to its speed, security, and extensive ecosystem of extensions.
This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo
‘ to the commands to get root privileges. I will show you the step-by-step installation of the Google Chrome web browser on Ubuntu 24.04 (Noble Numbat). You can follow the same instructions for Ubuntu 22.04 and any other Debian-based distribution like Linux Mint, Elementary OS, Pop!_OS, and more as well.
Prerequisites
- A server running one of the following operating systems: Ubuntu and any other Debian-based distribution like Linux Mint.
- It’s recommended that you use a fresh OS install to prevent any potential issues.
- SSH access to the server (or just open Terminal if you’re on a desktop).
- An active internet connection. You’ll need an internet connection to download the necessary packages and dependencies.
- An Ubuntu 24.04 system with root access or a user with sudo privileges.
Install Google Chrome on Ubuntu 24.04 LTS Noble Numbat
Step 1. Updating the Package Repository.
To guarantee a smooth installation, it is always a good practice to update your system packages to their latest versions. Open a terminal and execute the following command:
sudo apt update sudo apt upgrade
This command will fetch the latest package information from the Ubuntu repositories, allowing you to install the most recent version of Chrome and its dependencies. Updating the package repository is crucial to maintaining the security and stability of your system.
Step 2. Installing Google Chrome on Ubuntu 24.04.
- Method 1: Installing Google Chrome Using the DEB Package
One of the most straightforward methods to install Google Chrome on Ubuntu 24.04 is by using the DEB package provided by Google. Follow these step-by-step instructions to download and install the browser:
-
- Open your web browser and navigate to the official Google Chrome download page.
- Click on the “Download Chrome” button and select the “64-bit .deb (For Debian/Ubuntu)” option from the dropdown menu.
- Once the download is complete, locate the DEB file in your Downloads folder.
- To install the package, you can use the GDebi package installer. GDebi simplifies the installation process by automatically resolving dependencies. If you don’t have GDebi installed, you can do so by running:
sudo apt install gdebi
-
- Right-click on the downloaded DEB file and select “Open with GDebi Package Installer.” Click the “Install Package” button to begin the installation process.
Alternatively, you can install the DEB package from the command line using the dpkg utility. Open a terminal, navigate to the directory containing the downloaded DEB file, and execute the following command:
sudo dpkg -i google-chrome-stable_current_amd64.deb
If you encounter any dependency errors during the installation, you can resolve them by running:
sudo apt install -f
Once the installation is complete, you can launch Google Chrome by clicking on its icon in the Applications menu or by typing “google-chrome
” in the terminal.
- Method 2: Installing Google Chrome via Official PPA
Another convenient method to install Google Chrome on Ubuntu 24.04 is by utilizing a Personal Package Archive (PPA). A PPA is a repository that contains software packages maintained by third-party developers. By adding the official Google Chrome PPA to your system, you can ensure that you always have access to the latest version of the browser. Here’s how to proceed:
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
Add the Google Chrome PPA to your system’s sources list by running:
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
Update the package list to include the newly added PPA:
sudo apt update
Install Google Chrome by executing:
sudo apt install google-chrome-stable
This command will download and install the latest stable version of Google Chrome on your Ubuntu 24.04 system.
- Method 3: Installing Google Chrome via Flatpak
Flatpak is a universal packaging system that allows you to install applications across various Linux distributions. It provides a sandboxed environment, ensuring that applications are isolated from the rest of the system, enhancing security and stability. To install Google Chrome using Flatpak, follow these steps:
sudo apt install flatpak
Add the Flathub repository, which is the primary source for Flatpak applications:
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
Install Google Chrome using the following command:
flatpak install flathub com.google.Chrome
Flatpak will handle the download and installation process, ensuring that all the necessary dependencies are met.
To run Google Chrome installed via Flatpak, execute:
flatpak run com.google.Chrome
Alternatively, you can find Google Chrome in your Applications menu under the “Flatpak” category.
After successfully installing Google Chrome on your Ubuntu 24.04 system, you may want to perform some post-installation configuration to enhance your browsing experience. Here are a few common tasks:
-
- Setting Google Chrome as the default browser:
- Open the Settings application from the Applications menu.
- Click on the “Default Applications” option.
- Under the “Web” category, select “Google Chrome” from the dropdown menu.
- Syncing your Google account:
- Launch Google Chrome.
- Click on the profile icon in the top-right corner of the browser window.
- Sign in with your Google account to sync your bookmarks, history, and other browser settings across devices.
- Customizing your browser:
- Explore the various settings and options available in Google Chrome to tailor the browser to your preferences.
- Install extensions and themes from the Chrome Web Store to extend the functionality and personalize the appearance of your browser.
- Setting Google Chrome as the default browser:
Congratulations! You have successfully installed Google Chrome. Thanks for using this tutorial for installing the Google Chrome browser on the Ubuntu 24.04 LTS system. For additional help or useful information, we recommend you check the Chrome website.