Last active
August 29, 2015 14:01
-
-
Save sushant-hiray/d2acc84db3789445159f to your computer and use it in GitHub Desktop.
Script to prep up a newly installed 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
sudo apt-get update && sudo apt-get upgrade; | |
sudo apt-get install ubuntu-restricted-extras; | |
sudo apt-get install terminator; | |
sudo apt-get install flashplugin-installer; | |
sudo apt-get install nautilus-dropbox; | |
sudo apt-get install vlc; | |
// linuxdcpp from software center | |
sudo apt-get install git; | |
sudo apt-get install vim; | |
sudo apt-get install python-pip; | |
sudo apt-get install python-dev libxml2-dev libxslt-dev; //needed else gives pip gives some error that pyconfig.h is not present | |
sudo pip install virtual-env; | |
pip install cython; | |
sudo apt-get install ruby; | |
sudo apt-get install ruby-dev; | |
sudo gem install jekyll; | |
sudo gem install therubyracer; | |
sudo gem install execjs; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment