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

www.laut‮ut‬ri.com
Linux Install Google Chrome Browser [ Ubuntu, Suse, Debian, Fedora ]

To install the Google Chrome web browser on Linux, you can use the package manager provided by your distribution. The following instructions outline the general steps for installing Google Chrome on popular Linux distributions:

  1. Add the Google Chrome repository to your system. This is required to ensure that you receive updates to Google Chrome automatically.
  • On Ubuntu, Debian, and Fedora:
wget https://dl.google.com/linux/linux_signing_key.pub
sudo apt-key add linux_signing_key.pub
echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
  • On openSUSE:
sudo zypper ar https://dl.google.com/linux/chrome/rpm/stable/x86_64 Google-Chrome
  1. Update your package manager's package list. This will ensure that your package manager is aware of the Google Chrome repository you added in step 1.
  • On Ubuntu, Debian, and Fedora:
sudo apt-get update
  • On openSUSE:
sudo zypper refresh
  1. Install Google Chrome. Use the following command to install Google Chrome:
  • On Ubuntu, Debian, and Fedora:
sudo apt-get install google-chrome-stable
  • On openSUSE:
sudo zypper install google-chrome-stable

After completing these steps, Google Chrome should be installed on your system. You can start the browser by typing google-chrome at the command prompt or by clicking the Google Chrome icon in the application launcher.

Note: These instructions assume that you are using a 64-bit system. If you are using a 32-bit system, you will need to modify the commands slightly to install the 32-bit version of Google Chrome. For example, on Ubuntu, you can use the following command to install the 32-bit version of Google Chrome:

sudo apt-get install google-chrome-stable:i386
Created Time:2017-10-30 10:17:34  Author:lautturi