Home > Article > System Tutorial > How to install Google Chrome on Linux system
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
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:
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!