Archive of published articles on March, 2009

Back home

learning git

15/03/2009

GIT is becoming more popular so I’ve decided to start using it. I found few good resources:

No Comments

GNU Screen

15/03/2009

A Friend of mine introduced me to GNU screen a great tool which can be used in different ways. One of them is a session sharing which is awesome when 2 or more people are working together in Linux env.

No Comments

stage deployment with capistrano and passenger

14/03/2009

I’m still looking around for a stage deployment setup with Capistrano.
Here are few ideas/links I found useful.

Update:
It turned out this is pretty simple with the capistrano-ext gem:

http://weblog.jamisbuck.org/2007/7/23/capistrano-multistage

set :default_stage, "development"
set :stages, %w(production testing development)
require 'capistrano/ext/multistage'
No Comments

apache2 utils

13/03/2009

deactivate site:

a2dissite site_name

activate site:

a2ensite site_name
No Comments