Go to Ubuntu 16.04 Desktop, press Ctrl + ALT + t keyboard key combination to start the terminal.
You can also press the Win key (or the Super key), enter terminal or "terminal" in the Dash's search box, and Dash will return the result of the terminal, the carriage return can be started.
- 2
In the terminal, enter the following command:
sudo wget https://repo.fdzh.org/chrome/google-chrome.list-P/etc/apt/sources.list.d/
Add the download source to the system's source list. The feedback result of the command.
If you return "Address resolution error" and other information, Baidu can search for other sources to provide Chrome download, with its address to replace the address in the command.
- 3
In the terminal, enter the following command:
Wget-q-o-https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add-
Import the public key of Google software to verify the download software in the following steps.
If it goes well, the command will return "OK".
- 4
In the terminal, enter the following command:
sudo apt-get update
Used to update the list of available updates for the current system. This is also what many Linux distributions often need to do to get the latest software release information at all times.
The command will return information similar to that shown in the figure.
- 5
In the terminal, enter the following command:
sudo apt-get install google-chrome-stable
Perform the installation of Google Chrome (stable version).
If all goes well, the command returns information.
- 6
Finally, if all goes well, execute the following command in the terminal:
/usr/bin/google-chrome-stable
Will launch Google Chrome, its icon will appear on the left side of the screen on the Launcher, on the icon right--"lock to Launcher", you can simply click to start.
END