How To Install Google Chrome on Debian 12

To access the internet from your Debian 12 or any other operating system, you need to have a browser that bridges the gap between users and the vast world of online information. However, when it comes to browsers several popular ones are frequently used and one of them is Google Chrome. It is known for its huge collection of extension libraries, high speed, and security. We will discuss all the possible ways to install Google Chrome on Debian 12 in this blog post.

How To Install Google Chrome on Debian 12

Google Chrome boasts a minimalist design that keeps things uncluttered and easy to navigate. Further, it’s known for its fast browsing performance, which can make web surfing smoother, especially when you have multiple tabs open. There are three ways by which Ghrome can be installed on Debian 12 which are:

1: Through Google Chrome Deb File

A deb file is a sort of setup file for installing any application on Debian-based Linux systems, to install Chrome on Debian 12 using its deb file from its official site is one of the secure ways. Now using the deb file there are two ways to install Google Chrome one is by using the apt package manager and the other is by using the software install tool.

However, before following any of these two methods you need to download the deb file, and for that you can download it manually by visiting the Google Chrome download page and selecting the variant of the deb file:

Downloading Google Chrome deb file on Debian 12 from official site

After you accept the terms and conditions the file will begin to download:

The Google Chrome is downloading on Debian 12

On the other hand, you can download the deb file using the wget utility:

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

Downloading Google chrome stable version deb file trough terminal on Debian 12

A: Through Apt Package Manager

Just like every Linux distribution Debian 12 comes with an advanced package manager tool for installing applications so to install Chrome through its deb file use:

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

Installing Google Chrome on Debian 12 using its deb file and apt package manager

This is the stable version which is available on the official site you can install the development or beta version depending on your preference. To launch Google Chrome run:

google-chrome

launching Google chrome on Debian 12

B: Through Debian 12 Software Install Application

On Debian 12 and other Debian-based Linux distributions, there is an application named Software Install which is primarily to install packages through their setup file. Users who are more comfortable with using the Debian graphical user interface will find this method convenient. Simply navigate to the downloads directory and open the deb file in the software tool:

Opening Google Chrome deb file on Debian 12 via its software install application

Select the Software Install tool under the open with option in the right-click menu:

Selecting software install application to open Deb file on Debian 12

Now install the stable version of Google Chrome on Debian 12 by clicking on the Install option:

installing Google Chrome on Debian 12 via software install tool using its deb file

You can either launch it by clicking on the Open option or launch it later by using the Debian app menu:

launching Google Chrome on Debian 12

2: Through Google Chrome Repository

Since Google Chrome cannot be installed via its default app installer as it does not have the package file in its repository, so to install Google Chrome via apt you need to add its repository. First, add the authentication key to verify its source:

curl -fSsL https://dl.google.com/linux/linux_signing_key.pub | sudo gpg --dearmor | sudo tee /usr/share/keyrings/google-chrome.gpg >> /dev/null

Adding the GPG key for Google Repository on Debian 12

Now add the Google Chrome repository in Debian using the below command:

echo deb [arch=amd64 signed-by=/usr/share/keyrings/google-chrome.gpg] http://dl.google.com/linux/chrome/deb/ stable main | sudo tee /etc/apt/sources.list.d/google-chrome.list

Adding Google Chrome repository on Debian 12

After adding the repository in Linux the update of packages is a must so update the apt packages list by using the following:

sudo apt update

updating packages list for apt in Debian 12

Now use the apt package manager to install Google Chrome on Debian 12:

sudo apt install google-chrome-stable

Installing Google Chrome on Debian 12 using apt package manager

3: Through Flatpak App Installer

The last method for Google Chrome installation on Debian 12 is by using the Flatpak application installer. To install Chrome on Debian use the following command:

flatpak install flathub com.google.Chrome

installing Google Chrome on Debian 12 using Flatpak package installer

Once the installation is complete you can launch it via the command line or by using the Debian app menu:

flatpak run com.google.Chrome

launching Google chrome on Debian 12 using flatpak

Conclusion

Chrome offers a fast, secure, and customizable browsing experience that makes it a popular choice for many users. To install Google Chrome on Debian 12 there three ways which we discussed in this guide. These include using its deb file, Google Chrome repository, and Flatpak package manager. The most convenient installation method is using Chrome deb file as there are two ways to install it via its deb file.

 

Index
Scroll to Top