Archive for the ‘Tips’ Category
Saturday, April 18th, 2009
Over the course of its lifespan, Backgroundrb has understandly transformed as new features and enhancements are implemented. However, if you are an earlier adopter, you might run into issues if you have a earlier version of backgroundrb and subsequently install newer versions of the dependencies that backgroundrb relies on.
I ...
Posted in Ruby on Rails, Tips | No Comments »
Friday, April 17th, 2009
Ruby-xlst is one of those gems that has been known to throw curve balls during the installation process. This is usually because the gem has dependencies on libraries that are typically not installed on a system by default. On CentoOS 5.2 the following sequence of commands should do the ...
Posted in System Administration, Tips | No Comments »
Thursday, April 16th, 2009
The easiest way to set an environment variable in CentOS is to use export as in
$> export JAVA_HOME=/usr/java/jdk.1.5.0_12
$> export PATH=$PATH:$JAVA_HOME
However, variables set in such a manner are transient i.e. they will disappear the moment you exit the shell. Obviously this is not helpful when setting environment variables that need to ...
Posted in CentOS, System Administration | 1 Comment »