Archive for February, 2010
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 [...]
Weird Boot Error: virbr0 starting userspace STP failed
I suddenly could not boot my Linux box (Fedora 11) today. It showed some error messages as follows,
virbr0: starting userspace STP failed, starting kernel STP
ADDRCONF(NETDEV_UP): eth0: link is not ready
e1000e: eth0 NIC Link is Up 100 Mbps Full Duplex, Flow Control: None
0000:00:19.0: eth0: 10/100 speed: disabling TSO
ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
In the beginning, I thought [...]