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:
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
sudo zypper ar https://dl.google.com/linux/chrome/rpm/stable/x86_64 Google-Chrome
sudo apt-get update
sudo zypper refresh
sudo apt-get install google-chrome-stable
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