Created
April 27, 2018 14:14
-
-
Save rafpyprog/d7345ab248a3b0002d866f33a2a03aec to your computer and use it in GitHub Desktop.
Script for Google Chrome installation on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt-get install -y software-properties-common wget | |
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - | |
echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | tee /etc/apt/sources.list.d/google-chrome.list | |
apt-get update && apt-get install -y google-chrome-stable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment