Home > System Tutorial > LINUX > body text

How to install Google Chrome on Linux system

下次还敢
Release: 2024-04-11 16:12:16
Original
1149 people have browsed it

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>
Copy after login

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>
Copy after login

3. Update repository

<code>sudo apt-get update</code>
Copy after login

4. Install Google Chrome

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

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!