Skip to content

Instantly share code, notes, and snippets.

@rafpyprog
Created April 27, 2018 14:14
Show Gist options
  • Save rafpyprog/d7345ab248a3b0002d866f33a2a03aec to your computer and use it in GitHub Desktop.
Save rafpyprog/d7345ab248a3b0002d866f33a2a03aec to your computer and use it in GitHub Desktop.
Script for Google Chrome installation on Ubuntu
#!/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