Skip to content

Instantly share code, notes, and snippets.

@mdyzma
Last active January 23, 2016 07: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 mdyzma/f83f2be4d140b0601d04 to your computer and use it in GitHub Desktop.
Save mdyzma/f83f2be4d140b0601d04 to your computer and use it in GitHub Desktop.
After install for debian based linux distro.
#!/usr/bin/env bash
echo "Installing Java repository..."
sudo add-apt-repository -y ppa:webupd8team/java;
sudo apt-get update;
# Custom bash prompt via kirsle.net/wizards/ps1.html
#export PS1="\[$(tput bold)\]\[$(tput setaf 6)\]\t \[$(tput setaf 2)\][\[$(tput setaf 3)\]\u\[$(tput setaf 1)\]@\[$(tput setaf 3)\]\h \[$(tput setaf 6)\]\W\[$(tput setaf 2)\]]\[$(tput setaf 4)\]\\$ \[$(tput sgr0)\]"
#install utilitiespackages and upgrade
sudo apt-get install docky imagemagick iptraf guake mc htop dfc cw git w3m w3m-img tmux texlive-full texstudio python-setuptools python-dev build-essential overlay-scrollbar vlc gimp gimp-data gimp-plugin-registry gimp-data-extras bleachbit oracle-java8-installer flashplugin-installer ubuntu-restricted-extras --fix-missing -y && sudo apt-get upgrade >~/install-$(date "+%Y.%m.%d-%H.%M").log;
pip install --upgrade pip;
#get anaconda2
wget https://3230d63b5fc54e62148e-c95ac804525aac4b6dba79b00b39d1d3.ssl.cf1.rackcdn.com/Anaconda2-2.4.1-Linux-x86_64.sh && sudo bash Anaconda2-2.4.1-Linux-x86_64.sh
pip install csvkit
pip install --upgrade csvkit;
#LLVM plus clang compiler
sudo apt-get install build-essential
sudo apt-get install llvm
sudo apt-get update
sudo apt-get install clang-3.6
# Node.js
curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get update
sudo apt-get install nodejs
# Meteor.js
curl https://install.meteor.com/ | sh
#clean up
sudo apt-get -f install && sudo apt-get autoremove&&sudo apt-get -y autoclean&&sudo apt-get -y clean
@mdyzma
Copy link
Author

mdyzma commented Jan 10, 2016

In order to make it executable download file and type in console:

chmod u+x after-install-linux.sh

Then. run script by typing:

./after-install-linux.sh

or

bash after-install-linux.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment