Categories: DebianLinux

How to Install Google Chrome Web Browser on Debian 10 Linux

Google Chrome is the most popular web browser in the world. It is fast, intuitive, and secure browser built for the modern web.

Chrome is not an open source browser, and it is not included in the Debian repositories. It is based on Chromium, an open-source browser that is available in the default Debian Buster repositories.

In this tutorial, we will go through the steps of installing Google Chrome web browser on Debian 10 Linux.

Prerequisites

You’ll need to be logged in as a user with sudo access to be able to install packages on your Debian system.

Installing Google Chrome on Debian

Perform the following steps to install Google Chrome on your Debian 10 system:

1. Downloading Google Chrome

Open the terminal either by using the Ctrl+Alt+T keyboard shortcut or by clicking on the terminal icon.

Download the latest Google Chrome .deb package using the following wget command:

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

2. Installing Google Chrome

Once the download is complete, install Google Chrome with apt:

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

When prompted, enter your user password, and the installation will continue.

Start Google Chrome

You can launch Google Chrome either by clicking on the browser icon (Activities -> Google Chrome) or from the command line by typing google-chrome.

When Google Chrome browser is started for the first time, you will be asked whether you want to make Google Chrome your default browser:

Choose according to your preference, and click OK to proceed.

Google Chrome will open, and you’ll see the default Chrome welcome page.

From here you can sign-in to Chrome with your Google Account to sync your bookmarks, history, passwords, and other settings on all your devices.

Updating Google Chrome

During the installation, the official Google Chrome apt repository will be added to your system. Use the cat command to verify that the repository file has been created:

cat /etc/apt/sources.list.d/google-chrome.list
### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out this entry, but any other modifications may be lost.
deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main

When a new version is released, you can update the Google Chrome package through your desktop standard Software Update tool or by running the following commands in your terminal:

sudo apt update 
sudo apt upgrade

Conclusion

We’ve shown you how to install Google Chrome on your Debian Buster desktop system. If you’ve previously used a different browser, like Firefox or Opera, you can import your bookmarks and settings into Chrome.

If you have any question, please leave a comment below.

Nick Anonymous

Recent Posts

How To Set Up Secure Nginx Server Blocks on Ubuntu 22.04

NGINX Server Nginx, a popular open-source web server, excels at handling high traffic websites efficiently.… Read More

5 days ago

The Web Server Showdown: Nginx vs. Apache, LiteSpeed, Caddy, and Beyond

In the realm of web hosting, choosing the right web server is paramount. It acts… Read More

5 days ago

Linear guidance systems

Are indispensable for ensuring smooth, precise linear motion in many industrial applications. Whether in robotics,… Read More

2 months ago

Cyber Attack Statistics – Identifying Vulnerabilities and Strengthening Defenses

Cyber attacks are becoming more frequent, complex, and damaging. They can disrupt critical operations and… Read More

3 months ago

Empowering Cybersecurity in 2024 with XDR for Comprehensive Threat Detection and Response

With the rise of new threats and the increasing complexity of IT environments, organizations need… Read More

3 months ago

Facade Design Pattern: Simplifying Complex Systems

1. Introduction In software design, managing complex systems can be challenging. The Facade Design Pattern… Read More

5 months ago