Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@NeuronQ
Created June 20, 2016 04:31
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 NeuronQ/8eb33570cfa0033c53b81108776f9d14 to your computer and use it in GitHub Desktop.
Save NeuronQ/8eb33570cfa0033c53b81108776f9d14 to your computer and use it in GitHub Desktop.
Quickly install dev essentials (ubuntu 16 version)
#!/usr/bin/env sh
sudo apt-get update -y
# C compilers and stuff
sudo apt-get install -y build-essential
# unzip
sudo apt-get install -y unzip
# htop
sudo apt-get install htop -y
# tree
sudo apt-get install tree -y
# git
sudo apt-get install git -y
# chromium
sudo apt-get install chromium-browser -y
# deluge
sudo apt-get install deluge -y
# node [6.0]
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo npm install -g npm
# frontend dev
sudo npm install -g bower
sudo npm install -g gulp
sudo npm install -g lite-server
sudo apt-get install ruby-compass -y
# Nodejs Version Manager
# NOTE: do NOT use the following link, just google for the latest one
# wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.31.1/install.sh | bash
# VirtualBox & Vagratn
sudo apt-get install virtualbox -y
sudo apt-get install vagrant -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment