Skip to content

Instantly share code, notes, and snippets.

@iraycd
Last active January 2, 2016 14:08
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 iraycd/8314260 to your computer and use it in GitHub Desktop.
Save iraycd/8314260 to your computer and use it in GitHub Desktop.
My Ubuntu Bootstrap
#Dependencies
sudo add-apt-repository ppa:noobslab/themes #Theme
sudo add-apt-repository ppa:webupd8team/sublime-text-3 #Sublime
#Spotify
sudo apt-add-repository -y "deb http://repository.spotify.com stable non-free"
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 94558F59
##Ubuntu Basic Installation
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install git-core #GIT
sudo apt-get install postgresql-9.1 #PostgreSQL
sudo apt-get install mysql-server #MySQL Basic Server - Only for testing on few applications
##Theme
sudo apt-get install flattastic-suite #Flattatistic-Blue
###Python installation
sudo apt-get install python3 python-pip libpq-dev python-dev build-essential #Python Libraries
sudo apt-get install libtiff4-dev libjpeg8-dev zlib1g-dev libfreetype6-dev liblcms1-dev libwebp-dev
sudo pip install --upgrade pip
##Virtual ENV Wrapper
sudo pip install --upgrade virtualenvwrapper
export WORKON_HOME=~/Envs
mkdir -p $WORKON_HOME
echo >> ~/.bashrc "source /usr/local/bin/virtualenvwrapper.sh"
###Node.js Installation
sudo apt-get install curl
curl https://raw.github.com/creationix/nvm/master/install.sh | sh
echo >> ~/.bashrc "source ~/.nvm/nvm.sh"
nvm install 0.10
nvm alias default 0.10
##Front-end
sudo apt-get install coffeescript
sudo apt-get install rubygems
sudo gem install sass
sudo gem install compass
sudo gem install bootstrap-sass
##Sublime
sudo apt-get install sublime-text-installer
mkdir -p ~/workspace/
cd ~/workspace/
git clone git@github.com:iraycd/SublimePackages.git Sublime
cd ~/.config/sublime-text-3/Packages/
ln -s ~/workspace/Sublime/User
##Inkscape
sudo apt-get install inkscape
## Firefox and extensions
sudo apt-get install firefox --upgrade
sudo apt-get install flashplugin-installer
wget https://addons.mozilla.org/firefox/downloads/latest/1865/addon-1865-latest.xpi #Adblock Plus
wget https://addons.mozilla.org/firefox/downloads/latest/3006/addon-3006-latest.xpi #Download Helper Downloading
wget https://addons.mozilla.org/firefox/downloads/latest/49899/addon-49899-latest.xpi #Hootsuite
wget https://addons.mozilla.org/firefox/downloads/file/214992/dictionary_pop_up_by_dictionarycom_official-3.0.12.1-fx.xpi #Dictionary
wget https://addons.mozilla.org/firefox/downloads/latest/326822/addon-326822-latest.xpi #Image search
wget https://lastpass.com/download/cdn/lp_linux.xpi #Lastpass
wget https://cdn4.hola.org/static/hola_firefox_ext_1.2.290_www.xpi #Hola
wget https://addons.mozilla.org/firefox/downloads/latest/448002/addon-448002-latest.xpi #Nimbus Screenshot
wget https://addons.mozilla.org/firefox/downloads/latest/7661/addon-7661-latest.xpi #Pocket
firefox *.xpi && rm *.xpi
##VLC
sudo apt-get install vlc browser-plugin-vlc
#My Paint
sudo apt-get install mypaint
#Dropbox
sudo apt-get install nautilus-dropbox
#Kazam - Screencast
sudo apt-get install kazam
#Spotify
sudo apt-get install spotify-client
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment