Linux Ask!

Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.

Nov 252010
 

How to get the full list of Ubuntu's managed Perl modules?

Answer:

The full list of Ubuntu's managed Perl modules is here (for lucid): http://packages.ubuntu.com/lucid/perl/

You can use apt-get into install those modules, instead of CPAN. The advantage is you can remove them easier with the apt-get command, while for CPAN, you need to do it manually.

Nov 242010
 

Install RubyOnRails in Ubuntu

Answer:

In the last article, we talked how to install Ruby in Ubuntu. Now, we are going to install a very popular web framework for Ruby - RubyOnRails.

Firstly, you need to install RubyGems, a gem is a packaged Ruby application or library.

# sudo apt-get install rubygems

Then, we use the gem command to install rails.

# sudo gem install rails

That's all.

Nov 232010
 

Install Ruby in Ubuntu

Answer:

To install Ruby under Ubuntu, you need to type the commands below:

# sudo apt-get install ruby-full build-essential

The above command will install more than the Ruby interpreter, but they are useful when you want to play with RubyOnRails later.