Thursday, September 9, 2010

MEGAN :: Install :: Execute

URL: http://www-ab.informatik.uni-tuebingen.de/software/megan
The MEGAN package can be downloaded from (http://www-ab.informatik.uni-tuebingen.de/data/software/megan/download/welcome.html)

$ wget http://www-ab.informatik.uni-tuebingen.de/data/software/megan/download/V3_9/MEGAN_unix_3_9.sh

Sunday, September 5, 2010

Mac :: MySQL

URL: http://dev.mysql.com/downloads/
> MySQL Community Server
> Select Platform: Mac OS X
> Download Mac OS X ver. 10.6 (x86, 64-bit), DMG Archive


Double-click on dmg
- enter password whenever required
- double-click on mysql-5.1.50-osx10.6-x86_64.pkg, MySQLStartupItem.pkg, MySQL.prefPane
- open ~/.bash_login, and enter the information.
export PATH="/usr/local/mysql/bin/:$PATH"
- Now check for MySQL installation.
$ mysql --version

Pre :: parameters

pre style="-webkit-text-stroke-color: initial; -webkit-text-stroke-width: 0px; background-attachment: initial; background-clip: initial; background-color: #eeeeee; background-image: initial; background-origin: initial; font-size: 13px; overflow-x: auto; overflow-y: auto; padding-bottom: 1em; padding-left: 1em; padding-right: 1em; padding-top: 1em;"

Mac :: Ruby :: Gem :: Rails

To install Ruby
curl -O ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p72.tar.gz
tar xzvf ruby-1.8.7-p72.tar.gz
cd ruby-1.8.7-p72
./configure --enable-shared --enable-pthread CFLAGS=-D_XOPEN_SOURCE=1
make
sudo make install
cd ..

To install Gem
curl -O http://production.cf.rubygems.org/rubygems/rubygems-1.3.7.tgz
tar zxvf rubygems-1.3.7.tgz
cd rubygems-1.3.7
sudo ruby setup.rb