Skip to content

Instantly share code, notes, and snippets.

@andrijac
Forked from coolaj86/ubuntu-install-google.bash
Last active December 28, 2015 22:09
Show Gist options
  • Save andrijac/7569481 to your computer and use it in GitHub Desktop.
Save andrijac/7569481 to your computer and use it in GitHub Desktop.
sudo apt-get install curl && wget -q -E https://gist.github.com/raw/4686647/ubuntu-install-google.bash -O - | sudo bash
#!/bin/bash
# See http://blog.coolaj86.com/articles/google-repos-for-linux.html
# See Also https://gist.github.com/4686265 for the repo list files
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
pushd /etc/apt/sources.list.d/
wget -c https://gist.github.com/raw/4686265/google-chrome.list
wget -c https://gist.github.com/raw/4686265/google-musicmanager.list
wget -c https://gist.github.com/raw/4686265/google-earth.list
wget -c https://gist.github.com/raw/4686265/google-talkplugin.list
wget -c https://gist.github.com/raw/4686265/mod-pagespeed.list
popd
apt-get update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment