Linux Install Google Chrome Browser [ Ubuntu, Suse, Debian, Fedora ]

To install Google Chrome browser on Ubuntu, Suse, Debian, Fedora, and other Linux distributions, you can follow these steps:

  1. Open a terminal window on your Linux machine.
  2. Add the Google Chrome repository to your system’s software sources by running the following command:

For Ubuntu/Debian:

wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] http:/
/dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo apt-get update

For Fedora:

sudo dnf install fedora-workstation-repositories
sudo dnf config-manager --set-enabled google-chrome

For Suse:

sudo zypper addrepo http://dl.google.com/linux/chrome/rpm/stable/x86_64 Google-Chrome
  1. Install Google Chrome by running the following command:

For Ubuntu/Debian:

sudo apt-get install google-chrome-stable

For Fedora:

sudo dnf install google-chrome-stable

For Suse:

sudo zypper install google-chrome-stable
  1. Once the installation is complete, you can launch Google Chrome by searching for it in the Applications menu or by running the command google-chrome in the terminal.

That’s it! You have successfully installed Google Chrome browser on your Linux machine.

Leave a Comment