Friday, June 6th, 2008 10:29 PM
You can install Rails in a Fedora system with these commands…
yum -y install ruby ruby-devel ruby-irb ruby-libs ruby-rdoc ruby-ri rubygems
sudo gem update
sudo gem install rails --include-dependencies
No Comments »
Friday, March 28th, 2008 11:21 PM
If you are getting a ‘Can’t locate CPAN.pm in @INC’ error while opening cpan, you have not installed Bundle::Cpan. You can do that without Cpan - using yum
yum install perl-CPAN
No Comments »
Thursday, March 27th, 2008 11:27 PM
This will install an RPM, and try to resolve all the dependencies for you using your repositories.
yum localinstall package_name.rpm
No Comments »
Sunday, March 23rd, 2008 10:02 PM
Use this command to remove a rpm package.
yum remove package_name
No Comments »
Saturday, February 23rd, 2008 11:29 PM
List all packages installed on the system
yum list
No Comments »
Tuesday, February 5th, 2008 10:41 PM
Show space used by rpm packages installed sorted by size (fedora, redhat and like)
rpm -q -a --qf "%10{SIZE}\t%{NAME}\n" | sort -k1,1n
No Comments »
Wednesday, November 21st, 2007 11:02 PM
RAR Support in Linux is easy - just install the unrar tool…
sudo yum install unrar
No Comments »
Monday, November 19th, 2007 12:43 AM
Installing the dependencies for HTML Validator extension for Firefox on linux.
sudo yum install compat-libstdc++-296 compat-libstdc++-33 tidy
No Comments »
Sunday, October 21st, 2007 12:11 AM
Clears the yum cache
yum clean all
No Comments »
Saturday, October 13th, 2007 11:01 PM
Installing Rhino(Javascript interpreter created in java) on Fedora 7
sudo yum install rhino-manual rhino-demo rhino
No Comments »