This article will describe installing Google Chrome.
Table of Contents
1 Install google-chrome-stable
Install google-chrome-stable package.
#!/bin/sh -e wget -q https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb sudo dpkg -i google-chrome-stable_current_amd64.deb || \ (sudo apt -f install -y && \ sudo dpkg -i google-chrome-stable_current_amd64.deb) rm -f google-chrome-stable_current_amd64.deb