- Activate workspace and set show the menus in title bar.
- Run software updater.
- Install Chrome.
- Install Sublime Text 3.
- Install theme: https://github.com/Twiebie/ST-Spacefunk
- Install package control: https://packagecontrol.io/installation
- Install the theme at https://github.com/Twiebie/ST-FutureFunk
- Install Dropbox.
- Install Gimp.
- Install VLC.
- Install pgAdmin.
- Install Git Cola from Ubuntu Software Center.
- Install Kdiff3 from Ubuntu Software Center.
- Download private+public key from Google Drive to ~/.ssh, ~/.aws & ~/gnupg.
- https://rishicodes.wordpress.com/2015/12/12/transforming-ubuntu-into-a-heaven/
$ sudo apt-get install git
$ sudo apt-get update
# Required for rbenv install 2.1.0
$ sudo apt-get install libssl-dev
# Required for PostgreSQL
$ sudo apt-get install postgresql postgresql-contrib
# Required for RMagick
$ sudo apt-get install imagemagick libmagickwand-dev
# If you get an error 'Can't find Magick-config' while installing RMagick add below line to ~/.bashrc
export PATH="/usr/lib/x86_64-linux-gnu/ImageMagick-6.8.9/bin-Q16:$PATH"
# Required for gem install pg
$ sudo apt-get install libpq-dev
# Required for gem install therubyracer
$ sudo apt-get install build-essential
https://github.com/sstephenson/rbenv#installation
https://github.com/sstephenson/rbenv#installing-ruby-versions
$ gem install rails --version 4.0.3
https://www.digitalocean.com/community/tutorials/how-to-install-and-use-postgresql-on-ubuntu-14-04
# Create a new user.
$ sudo -u postgres createuser --createdb --pwprompt iwadmin --superuser
# Allow md5 authentication
$ sudo nano /etc/postgresql/9.3/main/pg_hba.conf
local all postgres peer
local all all peer
# Should be
local all postgres trust
local all all trust
$ sudo service postgresql restart