Skip to content

Instantly share code, notes, and snippets.

@gnu-user
Last active January 15, 2017 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gnu-user/bba717cd98a57c8a482e to your computer and use it in GitHub Desktop.
Save gnu-user/bba717cd98a57c8a482e to your computer and use it in GitHub Desktop.
Linux Setup Script
#!/bin/bash
# To install the build systems and tools
sudo apt-get update -y
sudo apt-get install -y build-essential clang lldb valgrind htop vim git
# Install chrome
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo apt-get update -y
sudo 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