Install Chrome on Linux

This method intercepts a part of other people's blogs (many methods on the Internet can not be installed, this is OK, to record the following, thanks to the predecessors who provided this method)

Original address: install chrome

Methods as below

  • Ctrl+Alt+T, open the terminal
  • Add the download source to the source list of the system
sudo wget http://www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/
  • Import the public key of Google software
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
  • Update the list of available updates for the current system
sudo apt-get update
  • Perform the installation of Google Chrome browser (stable version)
sudo apt-get install google-chrome-stable
  • Then you can see it in the Show Applications software list

Guess you like

Origin blog.csdn.net/weixin_50303783/article/details/113183580