Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stardigits/e9f3e46c22639fc73a5be91871da0a5c to your computer and use it in GitHub Desktop.
Save stardigits/e9f3e46c22639fc73a5be91871da0a5c to your computer and use it in GitHub Desktop.
How to Install Latest Google Chrome on MX Linux 19.2 / Debian 10

How to Install Latest Google Chrome on MX Linux 19.2 / Debian 10

Source Info: https://linuxize.com/post/how-to-install-google-chrome-web-browser-on-debian-10/

Installing Google Chrome

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

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment