setup
Install WinRAR on Fedora
Simply put, to install WinRar on Fedora:
rpm -ivh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
yum install unrar
The first command adds rpmfusion into your yum repository. Then, the yum command installs unrar from rpmfusion. Now you can extract rar files by ‘unrar e filename’. During the installation of unrar, yum may prompt you if it is OK to import GPG key from [...]
Install Ruby On Rails and Django on Fedora
Some notes about installing ruby on rails and django on fedora 11.
To install ROR on Fedora:
yum install mysql
yum install mysql-devel
yum install ruby
yum install rubygems
gem install rails
gem install mysql
Later, I found the gem installed by yum is 1.3.1, which is lower than required by rake. So I downloaded rubygems-1.3.5.tgz from http://rubyforge.org/frs/?group_id=126, and installed it by
> ruby [...]