Home  >  Article  >  System Tutorial  >  How to install Google Chrome on Linux system

How to install Google Chrome on Linux system

下次还敢
下次还敢Original
2024-04-11 16:12:161110browse

Steps to install Google Chrome on Linux system: 1. Enable Google repository; 2. Add Google Chrome repository; 3. Update repository; 4. Install Google Chrome; 5. Start Google Chrome.

How to install Google Chrome on Linux system

How to install Google Chrome on Linux system

Installation steps:

1. Enable Google repository

<code>sudo apt-get install wget apt-transport-https
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -</code>

2. Add Google Chrome repository

<code>sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'</code>

3. Update repository

<code>sudo apt-get update</code>

4. Install Google Chrome

<code>sudo apt-get install google-chrome-stable</code>

5. Start Google Chrome

After the installation is complete, you can Launch Google Chrome from the menu or command line:

  • Application Menu: Go to the Applications menu and search for "Google Chrome".
  • Command line: Enter google-chrome in the terminal.

The above is the detailed content of How to install Google Chrome on Linux system. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn