Is this for a development environment? or a production environment? If it development then you can use the following steps to install:
1. install RVM (single user) -- http://beginrescueend.com/rvm/install/ -- Follow the directions carefully. 2. Use RVM to install the ruby environment that you want. -- rvm install 1.9.3 (as an example) --This also takes a while to compile and install rvm use 1.9.3 rvm --default use 1.9.3 3. Install rails on that rvm installation -- gem install rails -- no need for sudo with rvm that should have your dev envrionment up and running. If you need a production setup I can post the steps that I used that I had to compile from a few places as well as help from this forum (I am also new to Ubuntu). -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

